NetBSD/etc/rc.d/ppp

68 lines
1.1 KiB
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
2004-10-11 19:00:51 +04:00
# $NetBSD: ppp,v 1.8 2004/10/11 15:00:51 christos Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: ppp
# REQUIRE: mountcritremote syslogd
# BEFORE: SERVERS
#
# Note that this means that syslogd will not be listening on
# any PPP addresses. This is considered a feature.
#
2000-03-10 14:53:23 +03:00
$_rc_subr_loaded . /etc/rc.subr
2000-03-10 14:53:23 +03:00
name="ppp"
start_cmd="ppp_start"
stop_cmd="ppp_stop"
sig_stop="-INT"
sig_hup="-HUP"
hup_cmd="ppp_hup"
extra_commands="hup"
2000-03-10 14:53:23 +03:00
ppp_start()
{
# /etc/ppp/peers and $ppp_peers contain boot configuration
# information for pppd. each value in $ppp_peers that has a
# file in /etc/ppp/peers of the same name, will be run as
# `pppd call <peer>'.
2000-03-10 14:53:23 +03:00
#
if [ -n "$ppp_peers" ]; then
set -- $ppp_peers
echo -n "Starting pppd:"
while [ $# -ge 1 ]; do
peer=$1
shift
if [ -f /etc/ppp/peers/$peer ]; then
pppd call $peer
echo -n " $peer"
fi
done
echo "."
fi
}
ppp_hup()
{
2004-10-11 19:00:51 +04:00
pids="$(check_process pppd)"
if [ -n "$pids" ]; then
for pid in $pids; do
kill $sig_hup $pid
done
fi
}
ppp_stop()
{
2004-10-11 19:00:51 +04:00
pids="$(check_process pppd)"
if [ -n "$pids" ]; then
for pid in $pids; do
kill $sig_stop $pid
done
fi
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"