blob: 1199028f413fbf605ec763186e5dd1d05c8230ad (
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
|
#!/bin/sh
#
# $NetBSD: hylafax.sh,v 1.1 2000/08/30 09:50:45 abs Exp $
#
command=${1:-start}
case ${command} in
start)
if [ -x @PREFIX@/libexec/hfaxd -a -f /var/spool/fax/etc/config ] ; then
echo -n 'Starting hfaxd'
@PREFIX@/libexec/hfaxd -i 4559 -o 4557 -s 444
echo ' faxq.'
@PREFIX@/sbin/faxq
fi
;;
stop)
PIDS=`ps -ax -o pid,command|egrep '[ /](faxq|hfaxd) '|awk '{printf " " $1}'`
if [ -n "$PIDS" ];then
echo "Stopping hylafax pids$PIDS."
kill -TERM $PIDS
else
echo "hylafax not running?"
fi
;;
restart)
( $0 stop )
sleep 1
$0 start
;;
esac
exit 0
|