blob: b45decbc3102e52d81ca2c551dfd31479eb11956 (
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
|
$NetBSD: patch-ah,v 1.7 2014/03/14 15:59:29 adam Exp $
--- etc/faxaddmodem.sh.in.orig 2012-06-06 00:58:38.000000000 +0000
+++ etc/faxaddmodem.sh.in
@@ -51,6 +51,7 @@ die()
}
SPEED=
+TTY=
DOFUSER=no
while [ x"$1" != x"" ] ; do
case $1 in
@@ -124,7 +125,7 @@ CAT="$CAT -u" # something to do unbuff
FAX=@FAXUID@ # identity of the fax user
GROUP=/etc/group # where to go for group entries
PROTOGID=@FAXGID@ # group who's gid we use for FAX user
-defPROTOGID=10 # use this gid if PROTOGID doesn't exist
+defPROTOGID=117 # use this gid if PROTOGID doesn't exist
MODEMCONFIG=$SPOOL/config # location of prototype modem config files
RMCMD="$RM -f" # forced removal
@@ -833,7 +834,7 @@ SendToModem()
COMMAND=$*
sleep 1 # wait for previous kill
case $TARGET in
- *-linux*) ;;
+ *-linux*|*-netbsd*) ;;
*) onDev $STTY 0; sleep 1 ;; # reset the modem (hopefully)
esac
# start listening for output
@@ -1178,7 +1179,7 @@ EOF
done;
MODEMCLASSES=`echo $MODEMCLASSES | $SED -e 's/3/2.0/g' -e 's/4/1.0/g' -e 's/5/2.1/g' -e 's/ $//g'`
SUPPORT=`echo $SUPPORT | $SED -e 's/3/2.0/g' -e 's/4/1.0/g' -e 's/5/2.1/g'`.
- if [ "`echo $SUPPORT | $GREP \" \"`" = "" ]; then echo $SUPPORT; fi
+ if [ "`echo $SUPPORT | $GREP \ `" = "" ]; then echo $SUPPORT; fi
case "$MODEMCLASSES" in
"") giveup;;
"1") ModemType=Class1; configureClass1Modem;;
@@ -1189,7 +1190,7 @@ EOF
*)
DEFAULTCLASS=`echo $MODEMCLASSES | $SED 's/\([^ ]*\).*/\1/g'`
x=""
- while [ "`echo \" $MODEMCLASSES \" | $GREP \" $x \"`" = "" ]; do
+ while [ "`echo \ $MODEMCLASSES\ | $GREP \ $x\ `" = "" ]; do
echo $SUPPORT
prompt "How should it be configured [$DEFAULTCLASS]?";
read x
|