Skip to content

Instantly share code, notes, and snippets.

@greenmoss
Created August 6, 2010 22:36
Show Gist options
  • Save greenmoss/512137 to your computer and use it in GitHub Desktop.
Save greenmoss/512137 to your computer and use it in GitHub Desktop.
template 'heartbeat' do
action :nothing
backup false
group "root"
mode "0644"
owner "root"
path "#{@node[:chef][:helper_path]}/heartbeat"
source "heartbeat.erb"
end
template 'heartbeat notifier' do
action :create
backup false
group "root"
mode "0644"
notifies :create, resources(:template => 'heartbeat'), :delayed
owner "root"
path "#{@node[:chef][:helper_path]}/heartbeat_notifier"
source "heartbeat.erb"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment