summaryrefslogtreecommitdiffstats
path: root/etc/rc.d
diff options
context:
space:
mode:
authorhm <hm@FreeBSD.org>1999-01-13 08:20:55 +0000
committerhm <hm@FreeBSD.org>1999-01-13 08:20:55 +0000
commit6ba2622f1f001b0b7ea4e92894d010676caf8199 (patch)
tree38274f8fa7a6a8939ebbfa89f0ef6eb8afbdaf45 /etc/rc.d
parentedc692a01679c567d2595101d350360b0830a570 (diff)
downloadFreeBSD-src-6ba2622f1f001b0b7ea4e92894d010676caf8199.zip
FreeBSD-src-6ba2622f1f001b0b7ea4e92894d010676caf8199.tar.gz
Integrate the ISDN subsystem into the /etc/rc framework
Reviewed by: Joerg Wunsch
Diffstat (limited to 'etc/rc.d')
-rw-r--r--etc/rc.d/isdnd44
-rw-r--r--etc/rc.d/netoptions7
-rw-r--r--etc/rc.d/network17
-rw-r--r--etc/rc.d/network27
-rw-r--r--etc/rc.d/network37
-rw-r--r--etc/rc.d/routing7
6 files changed, 74 insertions, 5 deletions
diff --git a/etc/rc.d/isdnd b/etc/rc.d/isdnd
new file mode 100644
index 0000000..ec159cc
--- /dev/null
+++ b/etc/rc.d/isdnd
@@ -0,0 +1,44 @@
+#!/bin/sh
+#---------------------------------------------------------------------------
+#
+# /etc/rc.isdn - isdn4bsd startup script
+# --------------------------------------
+#
+# last edit-date: [Tue Jan 12 15:35:36 1999]
+#
+# $Id:$
+#
+#---------------------------------------------------------------------------
+
+if [ "X${isdn_enable}" = X"YES" ] ; then
+
+ # 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 [ "X${isdn_flags}" = X"NO" ] ; then
+ isdn_flags=""
+ fi
+
+ # start the isdn daemon
+ if [ -x /usr/sbin/isdnd ] ; then
+ echo -n ' isdnd'
+ if [ "X${isdn_fsdev}" = X"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 [ "X${isdn_trace}" = X"YES" -a -x /usr/sbin/isdntrace ] ; then
+ echo -n ' isdntrace'
+ nohup /usr/sbin/isdntrace ${isdn_traceflags} >/dev/null 2>&1 &
+ fi
+fi
diff --git a/etc/rc.d/netoptions b/etc/rc.d/netoptions
index ab1c3ac..e3c7c8d 100644
--- a/etc/rc.d/netoptions
+++ b/etc/rc.d/netoptions
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.36 1998/11/27 07:06:11 jkoshy Exp $
+# $Id: rc.network,v 1.37 1999/01/03 22:19:23 jkh Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -31,6 +31,11 @@ network_pass1() {
atm_pass1
fi
+ # ISDN subsystem startup
+ if [ "X${isdn_enable}" = X"YES" -a -f /etc/rc.isdn ]; then
+ . /etc/rc.isdn
+ fi
+
# Set up all the network interfaces, calling startup scripts if needed
for ifn in ${network_interfaces}; do
if [ -e /etc/start_if.${ifn} ]; then
diff --git a/etc/rc.d/network1 b/etc/rc.d/network1
index ab1c3ac..e3c7c8d 100644
--- a/etc/rc.d/network1
+++ b/etc/rc.d/network1
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.36 1998/11/27 07:06:11 jkoshy Exp $
+# $Id: rc.network,v 1.37 1999/01/03 22:19:23 jkh Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -31,6 +31,11 @@ network_pass1() {
atm_pass1
fi
+ # ISDN subsystem startup
+ if [ "X${isdn_enable}" = X"YES" -a -f /etc/rc.isdn ]; then
+ . /etc/rc.isdn
+ fi
+
# Set up all the network interfaces, calling startup scripts if needed
for ifn in ${network_interfaces}; do
if [ -e /etc/start_if.${ifn} ]; then
diff --git a/etc/rc.d/network2 b/etc/rc.d/network2
index ab1c3ac..e3c7c8d 100644
--- a/etc/rc.d/network2
+++ b/etc/rc.d/network2
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.36 1998/11/27 07:06:11 jkoshy Exp $
+# $Id: rc.network,v 1.37 1999/01/03 22:19:23 jkh Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -31,6 +31,11 @@ network_pass1() {
atm_pass1
fi
+ # ISDN subsystem startup
+ if [ "X${isdn_enable}" = X"YES" -a -f /etc/rc.isdn ]; then
+ . /etc/rc.isdn
+ fi
+
# Set up all the network interfaces, calling startup scripts if needed
for ifn in ${network_interfaces}; do
if [ -e /etc/start_if.${ifn} ]; then
diff --git a/etc/rc.d/network3 b/etc/rc.d/network3
index ab1c3ac..e3c7c8d 100644
--- a/etc/rc.d/network3
+++ b/etc/rc.d/network3
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.36 1998/11/27 07:06:11 jkoshy Exp $
+# $Id: rc.network,v 1.37 1999/01/03 22:19:23 jkh Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -31,6 +31,11 @@ network_pass1() {
atm_pass1
fi
+ # ISDN subsystem startup
+ if [ "X${isdn_enable}" = X"YES" -a -f /etc/rc.isdn ]; then
+ . /etc/rc.isdn
+ fi
+
# Set up all the network interfaces, calling startup scripts if needed
for ifn in ${network_interfaces}; do
if [ -e /etc/start_if.${ifn} ]; then
diff --git a/etc/rc.d/routing b/etc/rc.d/routing
index ab1c3ac..e3c7c8d 100644
--- a/etc/rc.d/routing
+++ b/etc/rc.d/routing
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.36 1998/11/27 07:06:11 jkoshy Exp $
+# $Id: rc.network,v 1.37 1999/01/03 22:19:23 jkh Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -31,6 +31,11 @@ network_pass1() {
atm_pass1
fi
+ # ISDN subsystem startup
+ if [ "X${isdn_enable}" = X"YES" -a -f /etc/rc.isdn ]; then
+ . /etc/rc.isdn
+ fi
+
# Set up all the network interfaces, calling startup scripts if needed
for ifn in ${network_interfaces}; do
if [ -e /etc/start_if.${ifn} ]; then
OpenPOWER on IntegriCloud