Created
June 24, 2010 00:28
-
-
Save dstrelau/450788 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# chef-client - Chef Configuration Management Client | |
# | |
# Chef Client provides the Chef configuration management daemon | |
description "Chef Client" | |
start on filesystem | |
stop on runlevel S | |
respawn | |
respawn limit 5 30 | |
pre-start script | |
test -x /usr/bin/chef-client || { stop; exit 0; } | |
end script | |
exec /usr/bin/chef-client -L /var/log/chef/client.log |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment