xref: /dragonfly/etc/rc.d/sppp (revision 36a3d1d6)
1#!/bin/sh
2#
3# $FreeBSD: src/etc/rc.d/sppp,v 1.2 2003/04/18 17:55:05 mtm Exp $
4# $DragonFly: src/etc/rc.d/sppp,v 1.3 2005/11/19 21:47:32 swildner Exp $
5#
6
7# PROVIDE: sppp
8# REQUIRE: root
9# BEFORE: netif
10
11. /etc/rc.subr
12
13name="sppp"
14start_cmd="sppp_start"
15stop_cmd=":"
16
17sppp_start()
18{
19	# Special options for sppp(4) interfaces go here.  These need
20	# to go _before_ the general ifconfig since in the case
21	# of hardwired (no link1 flag) but required authentication, you
22	# cannot pass auth parameters down to the already running interface.
23	#
24	for ifn in ${sppp_interfaces}; do
25		eval spppcontrol_args=\$spppconfig_${ifn}
26		if [ -n "${spppcontrol_args}" ]; then
27			# The auth secrets might contain spaces; in order
28			# to retain the quotation, we need to eval them
29			# here.
30			eval spppcontrol ${ifn} ${spppcontrol_args}
31		fi
32	done
33}
34
35load_rc_config $name
36run_rc_command "$1"
37