diff options
author | John McCrae <jmccrae@chf.io> | 2022-05-08 08:26:38 +0600 |
---|---|---|
committer | John McCrae <jmccrae@chf.io> | 2022-05-08 08:26:38 +0600 |
commit | eb61d0ff6b80be0b57d568d3324218a39765a575 (patch) | |
tree | 32fe33c53650b2dfb26791c7319cd2c7c05a6515 | |
parent | 5cf66f6da660dc6431d751f17ebd0fe5fb132a2d (diff) | |
download | chef-eb61d0ff6b80be0b57d568d3324218a39765a575.tar.gz |
Updated the recipe to remove Git completely before updating it.
Signed-off-by: John McCrae <jmccrae@chf.io>
-rw-r--r-- | cspell.json | 1 | ||||
-rw-r--r-- | kitchen-tests/cookbooks/end_to_end/recipes/macos.rb | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/cspell.json b/cspell.json index 6dcb27f1d3..5532bfae24 100644 --- a/cspell.json +++ b/cspell.json @@ -33,7 +33,6 @@ "akzhan", "Alam", "Albenzi", - "ALL", "Alloc", "alloc", "Allowlist", diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/macos.rb b/kitchen-tests/cookbooks/end_to_end/recipes/macos.rb index 7fb71252f1..726b87949a 100644 --- a/kitchen-tests/cookbooks/end_to_end/recipes/macos.rb +++ b/kitchen-tests/cookbooks/end_to_end/recipes/macos.rb @@ -72,8 +72,8 @@ user "tempadmin" do password "password" end -sudo 'passwordless-access to change git ownership' do - commands ['ALL'] +sudo "passwordless-access to change git ownership" do + commands ["ALL"] nopasswd true users "tempadmin" end |