1#!/bin/sh
2#
3# Copyright (c) 2000  The FreeBSD Project
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# Start ATM daemons
31
32# PROVIDE: atm3
33# REQUIRE: atm2
34# BEFORE: DAEMON
35# KEYWORD: nojail
36
37. /etc/rc.subr
38
39name="atm3"
40rcvar="atm_enable"
41start_cmd="atm3_start"
42stop_cmd=":"
43
44atm3_start()
45{
46	echo -n 'Starting ATM daemons:'
47
48	# Get a list of network interfaces
49	atm_nif=`atm sh netif | { read junk ; \
50	    while read dev junk ; do
51		echo "${dev} "
52	    done
53	}`
54
55	for net in ${atm_nif} ; do
56		eval atmarp_args=\$atm_arpserver_${net}
57		eval scsparp_args=\$atm_scsparp_${net}
58
59		case ${scsparp_args} in
60		[Yy][Ee][Ss])
61			case ${atmarp_args} in
62			local)
63				;;
64			*)
65				warn "${net}: local arpserver required for SCSP"
66				continue
67				;;
68			esac
69
70			atm_atmarpd="${atm_atmarpd} ${net}"
71			atm_scspd=1
72			;;
73		esac
74	done
75
76	# Start SCSP daemon (if needed)
77	case ${atm_scspd} in
78	1)
79		echo -n ' scspd'
80		scspd
81		;;
82	esac
83
84	# Start ATMARP daemon (if needed)
85	if [ -n "${atm_atmarpd}" ]; then
86		echo -n ' atmarpd'
87		atmarpd ${atm_atmarpd}
88	fi
89	echo '.'
90}
91
92load_rc_config $name
93run_rc_command "$1"
94