aboutsummaryrefslogtreecommitdiff
path: root/comms/hylafax/files/hylafax-faxq.sh.sample
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-01-14 22:28:10 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-01-14 22:28:10 +0000
commiteba6967c9758820473c4bbebab80156f9e999040 (patch)
treed3c34fa023c04573677930afa600639aa8795256 /comms/hylafax/files/hylafax-faxq.sh.sample
parent37072f805a5e03a82430a4f5ed7a14cad2e2f531 (diff)
downloadports-eba6967c9758820473c4bbebab80156f9e999040.tar.gz
ports-eba6967c9758820473c4bbebab80156f9e999040.zip
- Update to 4.2.1
- Rework rc script - Handle nicely configuration files - Use SUB_FILES PR: ports/76179 Submitted by: Paul Everlund <tdv94ped@cs.umu.se> (maintainer)
Notes
Notes: svn path=/head/; revision=126467
Diffstat (limited to 'comms/hylafax/files/hylafax-faxq.sh.sample')
-rw-r--r--comms/hylafax/files/hylafax-faxq.sh.sample23
1 files changed, 0 insertions, 23 deletions
diff --git a/comms/hylafax/files/hylafax-faxq.sh.sample b/comms/hylafax/files/hylafax-faxq.sh.sample
deleted file mode 100644
index 643e834b0910..000000000000
--- a/comms/hylafax/files/hylafax-faxq.sh.sample
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /bin/sh
-# hylafax faxq startup example.
-# be sure to initialize the followings:
-# server: /usr/local/sbin/faxsetup
-# modems: /usr/local/sbin/faxaddmodem
-# incoming calls: /etc/ttys
-
-case "$1" in
-start)
- if [ -x /usr/local/sbin/faxq ]; then
- /usr/local/sbin/faxq && echo -n ' hylafax-faxq'
- fi
- ;;
-stop)
- killall faxq && echo -n ' hylafax-faxq'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0