summaryrefslogtreecommitdiff
path: root/lib/chef/resource/paludis_package.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/paludis_package.rb')
-rw-r--r--lib/chef/resource/paludis_package.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/paludis_package.rb b/lib/chef/resource/paludis_package.rb
index 7eddf8690b..552c96857a 100644
--- a/lib/chef/resource/paludis_package.rb
+++ b/lib/chef/resource/paludis_package.rb
@@ -28,7 +28,7 @@ class Chef
def initialize(name, run_context=nil)
super(name, run_context)
@resource_name = :paludis_package
- @allowed_actions = [ :install, :remove, :upgrade ]
+ @allowed_actions.push(:install, :remove, :upgrade)
@timeout = 3600
end
end