X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/45dde9418dd342bb1a632d82559201c0b3becf1a..87daa0d823c8f92eda8190f2d9b482b3d85a7a0c:/cookbooks/postgresql/resources/execute.rb diff --git a/cookbooks/postgresql/resources/execute.rb b/cookbooks/postgresql/resources/execute.rb index 8f59858b0..7a0f5b7b9 100644 --- a/cookbooks/postgresql/resources/execute.rb +++ b/cookbooks/postgresql/resources/execute.rb @@ -19,15 +19,12 @@ default_action :run -property :command, :kind_of => String, :name_attribute => true +property :command, :kind_of => String, :name_property => true property :cluster, :kind_of => String, :required => true property :database, :kind_of => String, :required => true property :user, :default => "postgres" property :group, :default => "postgres" -action :nothing do -end - action :run do options = { :database => new_resource.database, :user => new_resource.user, :group => new_resource.group }