mate_install: do not depend on deprecated GStreamer 0.10
[oi-userland.git] / components / network / hylafax / files / hfaxd
blobe1008d3acb78bafe7a4d554078cac722d46f05d3
1 HFAXD=/usr/sbin/hfaxd
2 HFAXD_CONF=/var/spool/hylafax/etc/setup.cache
3 PIDFILE=/var/run/hfaxd.pid
5 test -f $HFAXD_CONF || {
6     cat<<EOF
8 FATAL ERROR: $HFAXD_CONF is missing!
10 The file $HFAXD_CONF is not present.  This
11 probably means the machine has not been setup using the faxsetup(8C)
12 command.  Read the documentation on setting up HylaFAX before you
13 startup a server system.
15 EOF
16     exit 1
18 . $HFAXD_CONF
21 case $1 in
23 'start')
24         $HFAXD -i hylafax
25         ;;
27 'restart')
28         if [ -f "$PIDFILE" ]; then
29                 /usr/bin/kill -HUP `/usr/bin/cat $PIDFILE`
30         fi
31         ;;
34         echo "Usage: $0 { start | restart }"
35         exit 1
36         ;;
37 esac
39 exit $?