]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/apache/resources/module.rb
blogs: fix build in test
[chef.git] / cookbooks / apache / resources / module.rb
index 8b611d2c824be09a4486efb85ecb38de60b0bbb9..5de2bfcaade352b9623842a44031b02e297e1799 100644 (file)
@@ -1,14 +1,14 @@
 #
-# Cookbook Name:: apache
+# Cookbook:: apache
 # Resource:: apache_module
 #
-# Copyright 2013, OpenStreetMap Foundation
+# Copyright:: 2013, OpenStreetMap Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at
 #
-# http://www.apache.org/licenses/LICENSE-2.0
+# https://www.apache.org/licenses/LICENSE-2.0
 #
 # Unless required by applicable law or agreed to in writing, software
 # distributed under the License is distributed on an "AS IS" BASIS,
 # limitations under the License.
 #
 
+unified_mode true
+
 default_action [:install, :enable]
 
-property :module, :kind_of => String, :name_attribute => true
+property :module, :kind_of => String, :name_property => true
 property :package, :kind_of => String
 property :conf, :kind_of => String
 property :variables, :kind_of => Hash, :default => {}
@@ -28,12 +30,12 @@ property :restart_apache, :kind_of => [TrueClass, FalseClass], :default => true
 action :install do
   declare_resource :package, package_name unless installed?
 
-  if new_resource.conf # ~FC023
+  if new_resource.conf
     template available_name("conf") do
       source new_resource.conf
       owner "root"
       group "root"
-      mode 0o644
+      mode "644"
       variables new_resource.variables
     end
   end