X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/18e12b0e123fc3e5f344682f884feabc12da0f5a..a08c8d97d5cd3666799fb3bef14618d4c7c23398:/cookbooks/postgresql/resources/execute.rb diff --git a/cookbooks/postgresql/resources/execute.rb b/cookbooks/postgresql/resources/execute.rb index 75abddfff..4f7217ec8 100644 --- a/cookbooks/postgresql/resources/execute.rb +++ b/cookbooks/postgresql/resources/execute.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: postgresql +# Cookbook:: postgresql # Resource:: postgresql_execute # -# Copyright 2012, OpenStreetMap Foundation +# Copyright:: 2012, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,16 +17,15 @@ # 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 }