/etc/init/gmetad.conf is in gmetad 3.6.0-6ubuntu4.
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 19 | # Upstart job for Ganglia gmetad
description "Ganglia Metadata Daemon"
author "Bernard Li <bernard@vanhpc.org>"
script
test -f /etc/ganglia/gmetad.conf && . /etc/ganglia/gmetad.conf
export RRDCACHED_ADDRESS
end script
expect daemon
respawn
start on runlevel [2345]
stop on runlevel [!2345]
env PIDFILE="/var/run/gmetad.pid"
exec /usr/sbin/gmetad --pid-file=$PIDFILE
|