Skip to content

Instantly share code, notes, and snippets.

@tjl2
Created November 7, 2011 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tjl2/1344714 to your computer and use it in GitHub Desktop.
Save tjl2/1344714 to your computer and use it in GitHub Desktop.
Using notifies with templates
service "mysql" do
supports :restart => true
action :enable
end
if ['solo', 'db_master', 'db_slave'].include? node[:instance_role]
template "/etc/mysql.d/custom.cnf" do
owner 'root'
group 'root'
source 'custom.cnf.erb'
notifies :restart, resources(:service => 'mysql')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment