#!/bin/bash # Author: Milen Kouylekov # chkconfig: 35 80 15 # description: start/stop the GOLD accounting daemon . /etc/init.d/functions start () { /opt/gold/sbin/goldd start return 0 } stop () { killall -9 goldd } restart () { stop start } case "$1" in start) start; RETVAL=$? ;; stop) stop; RETVAL=$? ;; restart) restart; RETVAL=$? ;; esac exit $RETVAL