diff options
author | Tim Smith <tsmith@chef.io> | 2017-09-15 16:48:15 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2017-09-18 10:10:55 -0700 |
commit | 2454aadc460b4f5c3764862059794eab2bf1b877 (patch) | |
tree | c651f6725d92670f160821eb2eff645da01d4516 /kitchen-tests | |
parent | 5749c193e2e26a9cee63df51196315faf257c5eb (diff) | |
download | chef-2454aadc460b4f5c3764862059794eab2bf1b877.tar.gz |
Update users cookbook usage to use the resource
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'kitchen-tests')
-rw-r--r-- | kitchen-tests/cookbooks/base/recipes/default.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kitchen-tests/cookbooks/base/recipes/default.rb b/kitchen-tests/cookbooks/base/recipes/default.rb index 37025a96ee..896fd422b4 100644 --- a/kitchen-tests/cookbooks/base/recipes/default.rb +++ b/kitchen-tests/cookbooks/base/recipes/default.rb @@ -34,7 +34,10 @@ include_recipe "ntp" include_recipe "resolver" -include_recipe "users::sysadmins" +users_manage "sysadmin" do + group_id 2300 + action [:create] +end include_recipe "sudo" |