1998-02-08 01:00:08 -05:00
|
|
|
#! /bin/sh
|
1998-09-03 20:35:54 -04:00
|
|
|
|
|
|
|
# OpenBSD HylaFAX startup example
|
|
|
|
#
|
|
|
|
# Make sure that you have configured HylaFAX before running faxq!:
|
1998-02-08 01:00:08 -05:00
|
|
|
# server: /usr/local/sbin/faxsetup
|
|
|
|
# modems: /usr/local/sbin/faxaddmodem
|
|
|
|
# incoming calls: /etc/ttys
|
2001-11-18 12:06:51 -05:00
|
|
|
#
|
|
|
|
# Add these to /etc/rc.local:
|
1998-09-03 20:35:54 -04:00
|
|
|
|
1998-02-08 01:00:08 -05:00
|
|
|
if [ -x /usr/local/sbin/faxq ]; then
|
|
|
|
/usr/local/sbin/faxq && echo -n ' hylafax'
|
|
|
|
fi
|
2001-11-18 12:06:51 -05:00
|
|
|
|