]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/postgresql/resources/execute.rb
Activate chronology source in taginfo
[chef.git] / cookbooks / postgresql / resources / execute.rb
index 463a80edbb71e275fbff22d9e8f445a2facc771a..3845546bcfd65630512c9d47829b7da6852bdc4f 100644 (file)
 
 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"
+property :user, :kind_of => String, :default => "postgres"
+property :group, :kind_of => String, :default => "postgres"
 
 action :run do
   options = { :database => new_resource.database, :user => new_resource.user, :group => new_resource.group }