]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.isdn
This commit was generated by cvs2svn to compensate for changes in r72445,
[FreeBSD/FreeBSD.git] / etc / rc.isdn
1 #!/bin/sh
2 #
3 # Copyright (c) 1999  Hellmuth Michaelis
4 # All rights reserved.
5 #
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
8 # are met:
9 # 1. Redistributions of source code must retain the above copyright
10 #    notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 #    notice, this list of conditions and the following disclaimer in the
13 #    documentation and/or other materials provided with the distribution.
14 #
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 # ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 # SUCH DAMAGE.
26 #
27 # $FreeBSD$
28 #
29
30 #---------------------------------------------------------------------------
31 #
32 #       /etc/rc.isdn - isdn4bsd startup script
33 #       --------------------------------------
34 #
35 #       last edit-date: [Mon Mar  8 12:15:56 1999]
36 #
37 #---------------------------------------------------------------------------
38
39 case ${isdn_enable} in
40 [Yy][Ee][Ss])
41         echo -n 'ISDN subsystem setup:'
42
43         # Terminal type for fullscreen mode, default to syscons driver
44         #
45         isdn_ttype=cons25
46
47         # Check for pcvt driver (VT100/VT220 emulator)
48         #
49         if [ -x /usr/sbin/ispcvt ]; then
50                 if /usr/sbin/ispcvt; then
51                         isdn_ttype=pcvt25
52                 fi
53         fi
54
55         case ${isdn_flags} in
56         [Nn][Oo] | '')
57                 isdn_flags=''
58                 ;;
59         esac
60
61         # Start the isdn daemon
62         #
63         if [ -x /usr/sbin/isdnd ]; then
64                 echo -n ' isdnd'
65                 case ${isdn_fsdev} in
66                 [Nn][Oo] | '')
67                         /usr/sbin/isdnd ${isdn_flags}
68                         ;;
69                 *)
70                         /usr/sbin/isdnd ${isdn_flags} -f -r ${isdn_fsdev} -t ${isdn_ttype}
71                         ;;
72                 esac
73         fi
74
75         # Start isdntrace
76         #
77         case ${isdn_trace} in
78         [Yy][Ee][Ss])
79                 if [ -x /usr/sbin/isdntrace ]; then
80                         echo -n ' isdntrace'
81                         nohup /usr/sbin/isdntrace ${isdn_traceflags} >/dev/null 2>&1 &
82                 fi
83                 ;;
84         esac
85
86         echo '.'
87         ;;
88 esac