mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
53 lines
965 B
Bash
Executable file
53 lines
965 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. /etc/rc.conf
|
|
. /etc/rc.d/functions
|
|
|
|
get_pid() {
|
|
[ -f /var/run/pyaimt.pid ] && echo `cat /var/run/pyaimt.pid`
|
|
}
|
|
|
|
case "$1" in
|
|
start)
|
|
stat_busy "Starting jabber AIM transport daemon"
|
|
|
|
[ -f /var/run/pyaimt.pid ] && rm -f /var/run/pyaimt.pid
|
|
PID=`get_pid`
|
|
if [ -z "$PID" ]; then
|
|
cd /usr/lib/pyaim-t && python ./PyAIMt.py 1>/dev/null 2>/dev/null &
|
|
if [ $? -gt 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
else
|
|
add_daemon pyaimt
|
|
stat_done
|
|
fi
|
|
else
|
|
stat_fail
|
|
exit 1
|
|
fi
|
|
;;
|
|
|
|
stop)
|
|
stat_busy "Stopping jabber AIM transport daemon"
|
|
PID=`get_pid`
|
|
[ ! -z "$PID" ] && kill $PID &> /dev/null
|
|
if [ $? -gt 0 ]; then
|
|
stat_fail
|
|
exit 1
|
|
else
|
|
rm -f /var/run/pyaimt.pid &> /dev/null
|
|
rm_daemon pyaimt
|
|
stat_done
|
|
fi
|
|
;;
|
|
|
|
restart)
|
|
$0 stop
|
|
sleep 3
|
|
$0 start
|
|
;;
|
|
*)
|
|
echo "usage: $0 {start|stop|restart}"
|
|
esac
|
|
exit 0
|