blob: 51025b02072fdde9c04f931e415a545038e52952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
PID=`pidof -o %PPID /usr/bin/c2faxrecv`
case "$1" in
start)
stat_busy "Starting capi4hylafax"
if [ -z "$PID" ]; then
/usr/bin/c2faxrecv > /dev/null &
faxmodem faxCAPI
fi
if [ ! -f /var/run/faxq.pid ]; then
stat_fail
echo "ERROR: hylafax is not running"
exit 1
fi
if [ ! -f /var/run/hfaxd.pid ]; then
stat_fail
echo "ERROR: hylafax is not running"
exit 1
fi
if [ ! -z "$PID" -o $? -gt 0 ]; then
stat_fail
else
add_daemon capi4hylafax
stat_done
fi
;;
stop)
stat_busy "Stopping capi4hylafax"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon capi4hylafax
stat_done
fi
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 {start|stop|restart}"
esac
exit 0
|