/etc/init/munin-async.conf is in munin-async 2.0.25-2.
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 | # vim: set ft=upstart ts=2 et:
description "Munin asynchronous server"
author "James Page <james.page@ubuntu.com>"
start on started munin-node
stop on stopping munin-node
respawn
script
[ -r /etc/default/munin-asyncd ] && . /etc/default/munin-asyncd
exec start-stop-daemon --start --chuid munin-async \
--exec /usr/share/munin/munin-asyncd -- $DAEMON_ARGS
end script
|