/etc/init/serf.conf is in serf 0.6.4~ds1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Serf Agent (Upstart unit)
description "Serf Agent"
start on (local-filesystems and net-device-up IFACE!=lo)
stop on runlevel [06]
env SERF=/usr/bin/serf
env SERFCONFIG=/etc/serf
setuid _serf
setgid _serf
# Serf emits log messages to stdout, and upstart will write that to
# /var/log/upstart/serf.log
exec $SERF agent -config-dir $SERFCONFIG
respawn
respawn limit 10 10
kill timeout 10
|