diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-02-02 18:42:35 +0100 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-02-02 19:33:21 +0100 |
commit | 25e073492f266062f47c65bb20e590b023422746 (patch) | |
tree | 762816b7c5c3077641f7b7f93abfc95ef51711e4 /test/system/500-networking.bats | |
parent | 21a8ee904465b1aa54ce5fa6e3bbf93519ca0442 (diff) | |
download | podman-25e073492f266062f47c65bb20e590b023422746.tar.gz podman-25e073492f266062f47c65bb20e590b023422746.tar.bz2 podman-25e073492f266062f47c65bb20e590b023422746.zip |
Revert "Move each search dns to its own line"
This reverts commit a1bc8cb52cefd49e8cc54ae14d1864b8a1ec216e.
Please see resolv.conf(5) search domains must be on the same line. If
you use multiple seach key words only the last one is used. I tested this
with alpine and it works correctly when they are on the same line so I
am not sure what issues Dan had with it but this is not correct.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'test/system/500-networking.bats')
-rw-r--r-- | test/system/500-networking.bats | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/test/system/500-networking.bats b/test/system/500-networking.bats index e54b8d26a..9f70c1c6c 100644 --- a/test/system/500-networking.bats +++ b/test/system/500-networking.bats @@ -597,7 +597,7 @@ load helpers searchIP="100.100.100.100" cat >$containersconf <<EOF [containers] - dns_searches = [ "example.com", "test1.com"] + dns_searches = [ "example.com"] dns_servers = [ "1.1.1.1", "$searchIP", @@ -605,14 +605,9 @@ load helpers "8.8.8.8", ] EOF -export searchDNS="search example.com -search test1.com -search a.b" CONTAINERS_CONF=$containersconf run_podman run --rm $IMAGE grep "example.com" /etc/resolv.conf CONTAINERS_CONF=$containersconf run_podman run --rm $IMAGE grep $searchIP /etc/resolv.conf is "$output" "nameserver $searchIP" "Should only be one $searchIP not multiple" - CONTAINERS_CONF=$containersconf run_podman run --dns-search a.b --rm $IMAGE grep search /etc/resolv.conf - is "$output" "$searchDNS" "Searches should be on different lines" } # vim: filetype=sh |