X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/741593ee2bf203c9261f604d094e3d8e621698a8..320f57c3c95f31ab45dc0ca658454f37b3dfa366:/cookbooks/postgresql/resources/execute.rb diff --git a/cookbooks/postgresql/resources/execute.rb b/cookbooks/postgresql/resources/execute.rb index 7a0f5b7b9..4f7217ec8 100644 --- a/cookbooks/postgresql/resources/execute.rb +++ b/cookbooks/postgresql/resources/execute.rb @@ -17,13 +17,15 @@ # limitations under the License. # +unified_mode true + default_action :run 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 }