]> git.openstreetmap.org Git - chef.git/blob - cookbooks/chef/templates/default/chef-client.conf.erb
Only load pony when we need it
[chef.git] / cookbooks / chef / templates / default / chef-client.conf.erb
1 # chef-client
2 #
3 # Startup script for chef-client
4
5 description "starts up chef-client in daemon mode"
6
7 start on (net-device-up
8           and local-filesystems
9           and runlevel [2345])
10 stop on runlevel [!2345]
11
12 script
13         exec /usr/bin/chef-client -i 1800 -s 20
14 end script
15
16 respawn