diff options
author | Tim Smith <tsmith@chef.io> | 2018-07-16 19:22:03 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-07-16 19:22:03 -0700 |
commit | 2586f097e6e8d66b480d64d8675df9a38ff63b66 (patch) | |
tree | 9222e0ffd009ad0f5d7bde24b2ff5458114b9c6d | |
parent | 9be5aee25dcb3e0a7a5dadd79722a1ee7f62ebcd (diff) | |
download | chef-2586f097e6e8d66b480d64d8675df9a38ff63b66.tar.gz |
Add the DNF checks for Amazon Linux
At some point it's getting DNF too. Might as well add it to the mix so we don't have things break later.
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | spec/functional/resource/dnf_package_spec.rb | 2 | ||||
-rw-r--r-- | spec/functional/resource/rpm_spec.rb | 2 | ||||
-rw-r--r-- | spec/functional/resource/yum_package_spec.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/spec/functional/resource/dnf_package_spec.rb b/spec/functional/resource/dnf_package_spec.rb index f05d297004..392c3d4012 100644 --- a/spec/functional/resource/dnf_package_spec.rb +++ b/spec/functional/resource/dnf_package_spec.rb @@ -20,7 +20,7 @@ require "functional/resource/base" require "chef/mixin/shell_out" # run this test only for following platforms. -exclude_test = !(%w{rhel fedora}.include?(ohai[:platform_family]) && File.exist?("/usr/bin/dnf")) +exclude_test = !(%w{rhel fedora amazon}.include?(ohai[:platform_family]) && File.exist?("/usr/bin/dnf")) describe Chef::Resource::RpmPackage, :requires_root, external: exclude_test do include Chef::Mixin::ShellOut diff --git a/spec/functional/resource/rpm_spec.rb b/spec/functional/resource/rpm_spec.rb index fcaf8817eb..4ede713ad1 100644 --- a/spec/functional/resource/rpm_spec.rb +++ b/spec/functional/resource/rpm_spec.rb @@ -21,7 +21,7 @@ require "functional/resource/base" require "chef/mixin/shell_out" # run this test only for following platforms. -exclude_test = !%w{aix rhel fedora suse}.include?(ohai[:platform_family]) +exclude_test = !%w{aix rhel fedora suse amazon}.include?(ohai[:platform_family]) describe Chef::Resource::RpmPackage, :requires_root, external: exclude_test do include Chef::Mixin::ShellOut diff --git a/spec/functional/resource/yum_package_spec.rb b/spec/functional/resource/yum_package_spec.rb index 5075c24ea0..8e61da5f10 100644 --- a/spec/functional/resource/yum_package_spec.rb +++ b/spec/functional/resource/yum_package_spec.rb @@ -20,7 +20,7 @@ require "functional/resource/base" require "chef/mixin/shell_out" # run this test only for following platforms. -exclude_test = !(%w{rhel fedora}.include?(ohai[:platform_family]) && !File.exist?("/usr/bin/dnf")) +exclude_test = !(%w{rhel fedora amazon}.include?(ohai[:platform_family]) && !File.exist?("/usr/bin/dnf")) describe Chef::Resource::YumPackage, :requires_root, external: exclude_test do include Chef::Mixin::ShellOut |