summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2022-10-19 12:25:41 +0600
committerJohn McCrae <john.mccrae@progress.com>2022-10-19 12:25:41 +0600
commite524e5c8704c6481459244e8278617c24ba63780 (patch)
tree9356d57a9c4a703651c07a07ff86ab755cd3665b
parent062079874d9f65e4c1122700a90e838f946ce26b (diff)
downloadchef-jfm/chef17_resolver_conf.tar.gz
Backporting a fix for the Linux testers that fixes a resolver_conf issuejfm/chef17_resolver_conf
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", "*:*")