]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - etc/rc.d/pppoed
This commit was generated by cvs2svn to compensate for changes in r161651,
[FreeBSD/FreeBSD.git] / etc / rc.d / pppoed
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 # PROVIDE: pppoed
7 # REQUIRE: NETWORKING
8 # BEFORE: DAEMON
9 # KEYWORD: nojail
10
11 . /etc/rc.subr
12
13 name="pppoed"
14 rcvar="`set_rcvar`"
15 start_cmd="pppoed_start"
16 # XXX stop_cmd will not be straightforward
17 stop_cmd=":"
18
19 pppoed_start()
20 {
21         if [ -n "${pppoed_provider}" ]; then
22                         pppoed_flags="${pppoed_flags} -p ${pppoed_provider}"
23         fi
24         echo 'Starting pppoed'
25         _opts=$-; set -f
26         /usr/libexec/pppoed ${pppoed_flags} ${pppoed_interface}
27         set +f; set -${_opts}
28 }
29
30 load_rc_config $name
31 run_rc_command "$1"