blob: 1f8c6d0d9b04c1f39c468fa7d81ab8f31e966f56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# chef-client - Chef Configuration Management Client
#
# Chef Client provides the Chef configuration management daemon
description "Chef Client"
start on filesystem
stop on runlevel [!2345]
respawn
respawn limit 5 30
pre-start script
test -x /usr/bin/chef-client || { stop; exit 0; }
end script
exec /usr/bin/chef-client -i 1800 -L /var/log/chef/client.log
|