#!/sbin/svc

MYLISTING="Ground motion notification daemon"
CONTROL_GROUP="conf"
MYCFG="/etc/gmnotifyd/gmnotifyd.local"
MYVERSION="1.0"



start() {
	daemonize /usr/bin/gmnotifyd --config "${MYCFG}" \
		--user "daemon" --group "daemon" --umask "0002"
}

stop() {
        kill_pid
}
