use "use loopback" hint instead of "inet loopback", same with dhcp
This commit is contained in:
parent
37394310ea
commit
16af3755e0
4 changed files with 7 additions and 12 deletions
|
@ -27,14 +27,7 @@ print_interface(struct lif_interface *iface)
|
|||
if (iface->is_auto)
|
||||
printf("auto %s\n", iface->ifname);
|
||||
|
||||
printf("iface %s", iface->ifname);
|
||||
|
||||
if (iface->is_loopback)
|
||||
printf(" inet loopback\n");
|
||||
else if (iface->is_dhcp)
|
||||
printf(" inet dhcp\n");
|
||||
else
|
||||
printf("\n");
|
||||
printf("iface %s\n", iface->ifname);
|
||||
|
||||
struct lif_node *iter;
|
||||
LIF_DICT_FOREACH(iter, &iface->vars)
|
||||
|
|
|
@ -91,9 +91,10 @@ lif_interface_file_parse(struct lif_dict *collection, const char *filename)
|
|||
continue;
|
||||
|
||||
if (!strcmp(hint, "dhcp"))
|
||||
{
|
||||
cur_iface->is_dhcp = true;
|
||||
else if (!strcmp(hint, "loopback"))
|
||||
cur_iface->is_loopback = true;
|
||||
lif_dict_add(&cur_iface->vars, "use", strdup("dhcp"));
|
||||
}
|
||||
}
|
||||
else if (!strcmp(token, "use"))
|
||||
{
|
||||
|
|
|
@ -135,6 +135,7 @@ lif_interface_collection_init(struct lif_dict *collection)
|
|||
/* always enable loopback interface as part of a collection */
|
||||
if_lo = lif_interface_collection_find(collection, "lo");
|
||||
if_lo->is_auto = if_lo->is_loopback = true;
|
||||
lif_dict_add(&if_lo->vars, "use", strdup("loopback"));
|
||||
|
||||
lif_interface_address_add(if_lo, "127.0.0.1/8");
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ noargs_body() {
|
|||
}
|
||||
|
||||
loopback_always_configured_body() {
|
||||
atf_check -s exit:0 -o match:"inet loopback" \
|
||||
atf_check -s exit:0 -o match:"use loopback" \
|
||||
ifquery -S/dev/null -i $FIXTURES/static-eth0.interfaces lo
|
||||
}
|
||||
|
||||
|
@ -43,7 +43,7 @@ static_ipv6_body() {
|
|||
}
|
||||
|
||||
dhcp_ipv4_body() {
|
||||
atf_check -s exit:0 -o match:"inet dhcp" \
|
||||
atf_check -s exit:0 -o match:"use dhcp" \
|
||||
ifquery -S/dev/null -i $FIXTURES/dhcp-eth0.interfaces eth0
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue