diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-11-21 12:06:04 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-11-21 12:06:04 -0800 |
commit | 791e3c47d38f064f9c94ec96e5e7d0892d785338 (patch) | |
tree | 22bdb98e0457141df83370cde3e209ad7f7eb2f4 /kitchen-tests | |
parent | 060ca20fc8205d1d209d005a4ba360a8762ed958 (diff) | |
download | chef-791e3c47d38f064f9c94ec96e5e7d0892d785338.tar.gz |
remove s3cmd package
doesn't exist on amazonlinux image
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'kitchen-tests')
-rw-r--r-- | kitchen-tests/cookbooks/base/recipes/packages.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/kitchen-tests/cookbooks/base/recipes/packages.rb b/kitchen-tests/cookbooks/base/recipes/packages.rb index 1ca8d81968..92390f0942 100644 --- a/kitchen-tests/cookbooks/base/recipes/packages.rb +++ b/kitchen-tests/cookbooks/base/recipes/packages.rb @@ -1,6 +1,7 @@ - -pkgs = %w{lsof tcpdump strace zsh dmidecode ltrace bc curl wget telnet subversion git traceroute htop tmux s3cmd sysbench } +# this is just a list of package that exist on every O/S we test, and often aren't installed by default. you don't +# have to get too clever here, you can delete packages if they don't exist everywhere we test. +pkgs = %w{lsof tcpdump strace zsh dmidecode ltrace bc curl wget telnet subversion git traceroute htop tmux sysbench } # this deliberately calls the multipackage API N times in order to do one package installation in order to exercise the # multipackage cookbook. |