/etc/init.d/kolab for "chkconfig kolab on": #!/bin/sh # # chkconfig: 345 99 01 # description: starts and stops the Kolab server # [ ! -f /kolab/etc/rc.d/rc.kolab ] && exit 0 case "$1" in start|stop|restart|reload) /kolab/etc/rc.d/rc.kolab $1 ;; *) echo "usage: $0 start|stop|restart|reload" 1>&2 ;; esac