Browse Source

Removed unused attributes

Juanje Ojeda 12 years ago
parent
commit
91ae95410d
2 changed files with 0 additions and 6 deletions
  1. 0 4
      providers/file.rb
  2. 0 2
      resources/file.rb

+ 0 - 4
providers/file.rb

@@ -1,9 +1,5 @@
 action :replace do
   file new_resource.name do
     replace(new_resource.before, new_resource.after) if include?(new_resource.before)
-    owner new_resource.owner
-    group new_resource.group
-    mode "0644"
-    action :touch
   end
 end

+ 0 - 2
resources/file.rb

@@ -1,7 +1,5 @@
 actions :replace # and possibly more
 
 attribute :name, :kind_of => String, :name_attribute => true
-attribute :owner, :kind_of => String
-attribute :group, :kind_of => String
 attribute :before, :kind_of => String
 attribute :after, :kind_of => String