aboutgitcodebugslistschat
path: root/test/dhcp/pasta
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2022-06-10 12:32:43 +1000
committerStefano Brivio <sbrivio@redhat.com>2022-06-15 09:38:10 +0200
commitca0c33ae5b8a68806dd1c766e2f58ce24867f334 (patch)
treebdabe0027c287d1b3d2617a175b66f281dc389c6 /test/dhcp/pasta
parent2320ac3349789551e9c7500dba03e04b9ac02f41 (diff)
downloadpasst-ca0c33ae5b8a68806dd1c766e2f58ce24867f334.tar
passt-ca0c33ae5b8a68806dd1c766e2f58ce24867f334.tar.gz
passt-ca0c33ae5b8a68806dd1c766e2f58ce24867f334.tar.bz2
passt-ca0c33ae5b8a68806dd1c766e2f58ce24867f334.tar.lz
passt-ca0c33ae5b8a68806dd1c766e2f58ce24867f334.tar.xz
passt-ca0c33ae5b8a68806dd1c766e2f58ce24867f334.tar.zst
passt-ca0c33ae5b8a68806dd1c766e2f58ce24867f334.zip
Tweak dhclient arguments for readability
A number of tests and examples use dhclient in both IPv4 and IPv6 modes. We use "dhclient -6" for IPv6, but usually just "dhclient" for IPv4. Add an explicit "-4" argument to make it more clear and explicit. In addition, when dhclient is run from within pasta it usually won't be "real" root, and so will not have access to write the default global pid file. This results in a mostly harmless but irritating error: Can't create /var/run/dhclient.pid: Permission denied We can avoid that by using the --no-pid flag to dhclient. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'test/dhcp/pasta')
-rw-r--r--test/dhcp/pasta2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dhcp/pasta b/test/dhcp/pasta
index 77e9e42..e76454a 100644
--- a/test/dhcp/pasta
+++ b/test/dhcp/pasta
@@ -35,7 +35,7 @@ nsout MTU ip -j link show | jq -rM '.[] | select(.ifname == "__IFNAME__").mtu'
check [ __MTU__ = 65520 ]
test DHCPv6: address
-ns /sbin/dhclient -6 __IFNAME__
+ns /sbin/dhclient -6 --no-pid __IFNAME__
nsout ADDR6 ip -j -6 addr show|jq -rM '.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.prefixlen == 128).local'
hout HOST_ADDR6 ip -j -6 addr show|jq -rM '.[] | select(.ifname == "__IFNAME__").addr_info[] | select(.scope == "global").local'
check [ __ADDR6__ = __HOST_ADDR6__ ]