#!/sbin/runscript depend() { need ls-hubd-pub ls-hubd-prv db8-maindb } start() { ebegin "Starting ${SVCNAME}" start-stop-daemon --make-pidfile --pidfile=/run/activitymanager.pid --background --start -- exec /usr/sbin/activitymanager -c {\"log\":{\"appender\":{\"type\":\"syslog\"},\"levels\":{\"default\":\"notice\"}}} eend } stop() { start-stop-daemon --stop -p /run/activitymanager.pid } # vim: ts=4 filetype=gentoo-init-d