]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/postgresql/resources/execute.rb
Fix cookstyle warning
[chef.git] / cookbooks / postgresql / resources / execute.rb
index 75abddfffd5bbd25b68ad51fe27ca43276acc713..463a80edbb71e275fbff22d9e8f445a2facc771a 100644 (file)
@@ -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.
@@ -25,9 +25,6 @@ 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 }