]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/postgresql/resources/execute.rb
Enable unified mode for custom resources
[chef.git] / cookbooks / postgresql / resources / execute.rb
index 8f59858b0c4389d033d7cf5e4379e25db3bd536b..4f7217ec850a82fe81f08d16083412f0b45a1406 100644 (file)
 # limitations under the License.
 #
 
+unified_mode true
+
 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
+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 }