/etc/init/munin-node.conf is in munin-node 2.0.19-3.
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 | # vim: set ft=upstart ts=2 et:
description "munin-node"
author "Chuck Short <zulcss@ubuntu.com>"
start on (filesystem and net-device-up IFACE=lo)
stop on runlevel [!2345]
expect fork
respawn
pre-start script
install -m 0755 -o munin -g munin -d /var/run/munin
end script
script
[ -r /etc/default/munin-node ] && . /etc/default/munin-node
exec /usr/sbin/munin-node $DAEMON_ARGS
end script
|