]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/squid/resources/fragment.rb
nominatim: need python3-datrie for ICU tokenizer
[chef.git] / cookbooks / squid / resources / fragment.rb
index d3778c4ac2959a256631e58e571ac6fd803e4d53..a418d6bcd8bf2d2bf247c1b03778903640d71f65 100644 (file)
 # limitations under the License.
 #
 
+unified_mode true
+
 default_action :create
 
-property :fragment, :kind_of => String, :name_attribute => true
-property :template, :kind_of => String, :required => true
+property :fragment, :kind_of => String, :name_property => true
+property :template, :kind_of => String, :required => [:create]
 property :variables, :kind_of => Hash, :default => {}
 
 action :create do
@@ -28,7 +30,7 @@ action :create do
     source new_resource.template
     owner "root"
     group "root"
-    mode 0o644
+    mode "644"
     variables new_resource.variables
   end
 end