1261272Sdim#!/bin/sh
2261272Sdim#
3353358Sdim# Copyright (c) 2000  The FreeBSD Project
4353358Sdim# All rights reserved.
5353358Sdim#
6261272Sdim# Redistribution and use in source and binary forms, with or without
7261272Sdim# modification, are permitted provided that the following conditions
8261272Sdim# are met:
9314564Sdim# 1. Redistributions of source code must retain the above copyright
10261272Sdim#    notice, this list of conditions and the following disclaimer.
11314564Sdim# 2. Redistributions in binary form must reproduce the above copyright
12314564Sdim#    notice, this list of conditions and the following disclaimer in the
13261272Sdim#    documentation and/or other materials provided with the distribution.
14314564Sdim#
15261272Sdim# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16314564Sdim# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17314564Sdim# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18314564Sdim# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19261272Sdim# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20314564Sdim# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21261272Sdim# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22341825Sdim# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23341825Sdim# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24341825Sdim# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25341825Sdim# SUCH DAMAGE.
26341825Sdim#
27314564Sdim# $FreeBSD$
28314564Sdim#
29341825Sdim
30341825Sdim# Start ATM daemons
31341825Sdim
32341825Sdim# PROVIDE: atm3
33341825Sdim# REQUIRE: atm2
34341825Sdim# BEFORE: DAEMON
35341825Sdim# KEYWORD: nojail
36341825Sdim
37341825Sdim. /etc/rc.subr
38341825Sdim
39261272Sdimname="atm3"
40261272Sdimrcvar="atm_enable"
41276792Sdimstart_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