summaryrefslogtreecommitdiff
path: root/lib/chef/resource/apt_package.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-09-14 18:58:33 -0700
committerTim Smith <tsmith@chef.io>2017-09-14 20:15:22 -0700
commitab50e36aa0f66a072ebe92cc85a2fcc8bced40e8 (patch)
treeb1fb39c438b4727a2f2b596d16f7efa0349834fe /lib/chef/resource/apt_package.rb
parent114c7786670c180c15cfc152432a7df1c0b1fc52 (diff)
downloadchef-ab50e36aa0f66a072ebe92cc85a2fcc8bced40e8.tar.gz
Remove the usage of an array for the platform_familyapt_resources
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/apt_package.rb')
-rw-r--r--lib/chef/resource/apt_package.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/apt_package.rb b/lib/chef/resource/apt_package.rb
index 069fefcb2b..8397f84c71 100644
--- a/lib/chef/resource/apt_package.rb
+++ b/lib/chef/resource/apt_package.rb
@@ -23,7 +23,7 @@ class Chef
class Resource
class AptPackage < Chef::Resource::Package
resource_name :apt_package
- provides :package, os: "linux", platform_family: [ "debian" ]
+ provides :package, os: "linux", platform_family: "debian"
property :default_release, String, desired_state: false