updated on Sun Jan 22 16:00:49 UTC 2012
[aur-mirror.git] / jsession / jsessiond
blobf77718cdc0d9eef06619ab92238976a4e0fddf28
1 #!/bin/bash
3 . /etc/rc.conf
4 . /etc/rc.d/functions
6 pid=`pidof -x -o %PPID jsessiond`
7 case "$1" in
8 start)
9 stat_busy "Starting jsessiond"
10 [ -z "$pid" ] && jsessiond &> /dev/null
11 if [ $? -gt 0 ]; then
12 stat_fail
13 else
14 add_daemon jsessiond
15 stat_done
18 stop)
19 stat_busy "Stopping jsessiond"
20 [ ! -z "$pid" ] && kill $pid &> /dev/null
21 if [ $? -gt 0 ]; then
22 stat_fail
23 else
24 rm_daemon jsessiond
25 stat_done
29 echo "usage: $0 {start|stop}"
30 esac
31 exit 0