Debian - OpenPKG init script
From Kolab wiki
[edit]
Debian Init Script to start Kolab 2 Server
#!/bin/sh
##
## kolab -- startup/shutdown transfer script for OpenPKG /kolab hierarchy
##
[ ! -f /kolab/etc/rc ] && exit 0
case $1 in
start ) exec /kolab/etc/rc all start ;;
stop ) exec /kolab/etc/rc all stop ;;
esac
