# 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 => {}
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