]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/postgresql/resources/execute.rb
Fix new foodcritic warnings
[chef.git] / cookbooks / postgresql / resources / execute.rb
index 49ff80e4f3d8afba55ed11786022c50022a4cffe..f01e219129062056bc62f976013013ec24188b33 100644 (file)
@@ -17,6 +17,8 @@
 # limitations under the License.
 #
 
+default_action :run
+
 actions :nothing, :run
 
 attribute :command, :kind_of => String, :name_attribute => true
@@ -24,8 +26,3 @@ attribute :cluster, :kind_of => String, :required => true
 attribute :database, :kind_of => String, :required => true
 attribute :user, :default => "postgres"
 attribute :group, :default => "postgres"
-
-def initialize(*args)
-  super
-  @action = :run
-end