true
end
-action :install do
- if not installed?
- package package_name do
- version new_resource.version
- end
+use_inline_resources
- updated = true
- else
- updated = false
+action :install do
+ unless installed?
+ package package_name
end
- if new_resource.conf
- t = template available_name("conf") do
+ if new_resource.conf # ~FC023
+ template available_name("conf") do
source new_resource.conf
owner "root"
group "root"
- mode 0644
+ mode 0o644
variables new_resource.variables
- notifies :reload, "service[apache2]" if enabled?
end
-
- updated = updated || t.updated_by_last_action?
end
-
- new_resource.updated_by_last_action(updated)
end
action :enable do
- if not enabled?
- link enabled_name("load") do
- to available_name("load")
- owner "root"
- group "root"
- notifies :restart, "service[apache2]"
- end
+ execute "a2enmod-#{new_resource.name}" do
+ command "a2enmod #{new_resource.name}"
+ user "root"
+ group "root"
+ not_if { ::File.exist?(enabled_name("load")) }
+ end
- link enabled_name("conf") do
- to available_name("conf")
- owner "root"
- group "root"
- notifies :reload, "service[apache2]"
- only_if { ::File.exists?(available_name("conf")) }
- end
+ link enabled_name("load") do
+ to available_name("load")
+ owner "root"
+ group "root"
+ end
- new_resource.updated_by_last_action(true)
+ link enabled_name("conf") do
+ to available_name("conf")
+ owner "root"
+ group "root"
+ only_if { ::File.exist?(available_name("conf")) }
end
end
action :disable do
- if enabled?
- link enabled_name("load") do
- action :delete
- notifies :restart, "service[apache2]"
- end
-
- link enabled_name("conf") do
- action :delete
- notifies :reload, "service[apache2]"
- end
+ link enabled_name("load") do
+ action :delete
+ end
- new_resource.updated_by_last_action(true)
+ link enabled_name("conf") do
+ action :delete
end
end
action :delete do
- if installed?
- package package_name do
- action :remove
- end
-
- new_resource.updated_by_last_action(true)
+ package package_name do
+ action :remove
end
end
end
def installed?
- ::File.exists?(available_name("load"))
-end
-
-def enabled?
- ::File.exists?(enabled_name("load"))
+ ::File.exist?(available_name("load"))
end