1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

Don't hardcode isdn_ttype overwriting rc.conf settings.

PR:		conf/24865
Submitted by:	schweikh
Reviewed by:	hm
This commit is contained in:
Jens Schweikhardt 2001-04-24 20:01:25 +00:00
parent 67e99a1a66
commit 51e41a3522
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=75919
2 changed files with 2 additions and 30 deletions

View File

@ -32,28 +32,14 @@
# /etc/rc.isdn - isdn4bsd startup script
# --------------------------------------
#
# last edit-date: [Mon Mar 8 12:15:56 1999]
#
#---------------------------------------------------------------------------
case ${isdn_enable} in
[Yy][Ee][Ss])
echo -n 'ISDN subsystem setup:'
# Terminal type for fullscreen mode, default to syscons driver
#
isdn_ttype=cons25
# Check for pcvt driver (VT100/VT220 emulator)
#
if [ -x /usr/sbin/ispcvt ]; then
if /usr/sbin/ispcvt; then
isdn_ttype=pcvt25
fi
fi
case ${isdn_flags} in
[Nn][Oo] | '')
[Nn][Oo])
isdn_flags=''
;;
esac

View File

@ -32,28 +32,14 @@
# /etc/rc.isdn - isdn4bsd startup script
# --------------------------------------
#
# last edit-date: [Mon Mar 8 12:15:56 1999]
#
#---------------------------------------------------------------------------
case ${isdn_enable} in
[Yy][Ee][Ss])
echo -n 'ISDN subsystem setup:'
# Terminal type for fullscreen mode, default to syscons driver
#
isdn_ttype=cons25
# Check for pcvt driver (VT100/VT220 emulator)
#
if [ -x /usr/sbin/ispcvt ]; then
if /usr/sbin/ispcvt; then
isdn_ttype=pcvt25
fi
fi
case ${isdn_flags} in
[Nn][Oo] | '')
[Nn][Oo])
isdn_flags=''
;;
esac