#!/bin/bash . /etc/rc.conf . /etc/rc.d/functions get_pid() { [ -f /var/run/pyicqt.pid ] && echo `cat /var/run/pyicqt.pid` } case "$1" in start) stat_busy "Starting jabber ICQ transport daemon" [ -f /var/run/pyicqt.pid ] && rm -f /var/run/pyicqt.pid PID=`get_pid` if [ -z "$PID" ]; then cd /usr/lib/pyicqt && exec python2 ./PyICQt.py 1>/dev/null 2>/dev/null & if [ $? -gt 0 ]; then stat_fail exit 1 else add_daemon pyicqt stat_done fi else stat_fail exit 1 fi ;; stop) stat_busy "Stopping jabber ICQ transport daemon" PID=`get_pid` [ ! -z "$PID" ] && kill $PID &> /dev/null if [ $? -gt 0 ]; then stat_fail exit 1 else rm -f /var/run/pyicqt.pid &> /dev/null rm_daemon pyicqt stat_done fi ;; restart) $0 stop sleep 3 $0 start ;; *) echo "usage: $0 {start|stop|restart}" esac exit 0