summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2022-10-19 12:33:07 +0600
committerJohn McCrae <john.mccrae@progress.com>2022-10-19 12:33:07 +0600
commit0c267d89d8d18827a3378e70b6f36129710f4b51 (patch)
tree9356d57a9c4a703651c07a07ff86ab755cd3665b
parent062079874d9f65e4c1122700a90e838f946ce26b (diff)
downloadchef-0c267d89d8d18827a3378e70b6f36129710f4b51.tar.gz
Backporting a fix for the Linux testers that fixes a resolver_conf issue
Signed-off-by: John McCrae <john.mccrae@progress.com>
-rw-r--r--kitchen-tests/cookbooks/end_to_end/recipes/linux.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/linux.rb b/kitchen-tests/cookbooks/end_to_end/recipes/linux.rb
index c08bc4ee2e..90f972657b 100644
--- a/kitchen-tests/cookbooks/end_to_end/recipes/linux.rb
+++ b/kitchen-tests/cookbooks/end_to_end/recipes/linux.rb
@@ -43,6 +43,7 @@ include_recipe "ntp" unless fedora? # fedora 34+ doesn't have NTP
resolver_config "/etc/resolv.conf" do
nameservers [ "8.8.8.8", "8.8.4.4" ]
search [ "chef.io" ]
+ atomic_update false # otherwise EBUSY for linux docker containers
end
users_from_databag = search("users", "*:*")