freebsd-dev/etc/rc.isdn
Sheldon Hearn b68adff6b7 Style clean-up:
* All variables are now embraced: ${foo}

	* All comparisons against some value now take the form:
	  [ "${foo}" ? "value" ]
	  where ? is a comparison operator

	* All empty string tests now take the form:
	  [ -z "${foo}" ]

	* All non-empty string tests now take the form:
	  [ -n "${foo}" ]

Submitted by:	jkh
1999-08-25 16:01:45 +00:00

49 lines
1.1 KiB
Bash

#!/bin/sh
#---------------------------------------------------------------------------
#
# /etc/rc.isdn - isdn4bsd startup script
# --------------------------------------
#
# last edit-date: [Mon Mar 8 12:15:56 1999]
#
# $Id: rc.isdn,v 1.2 1999/03/08 11:28:45 hm Exp $
#
#---------------------------------------------------------------------------
if [ "${isdn_enable}" = "YES" ] ; then
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
if [ "${isdn_flags}" = "NO" ] ; then
isdn_flags=""
fi
# start the isdn daemon
if [ -x /usr/sbin/isdnd ] ; then
echo -n ' isdnd'
if [ "${isdn_fsdev}" = "NO" ] ; then
/usr/sbin/isdnd ${isdn_flags}
else
/usr/sbin/isdnd ${isdn_flags} -f -r ${isdn_fsdev} -t ${isdn_ttype}
fi
fi
# start isdntrace
if [ "${isdn_trace}" = "YES" -a -x /usr/sbin/isdntrace ] ; then
echo -n ' isdntrace'
nohup /usr/sbin/isdntrace ${isdn_traceflags} >/dev/null 2>&1 &
fi
echo '.'
fi