bd11504cb2
implicitly using $name if $rcvar isn't set), and always perform this check, even when using start_cmd (et al). this check is performed before the pidcmd is run, speeding up scripts that weren't going to be run anyway. this should speed up booting slow systems. - take advantage of the above and remove start_precmd="checkyesno foo" in scripts that use start_cmd. - explicitly set rcvar=foo in the rc.d/foo scripts which have an equivalent rc.conf entry - fix `rcvar' and `restart' when $rcvar isn't set. these above changes fix PR [bin/11027]. - when doing `force*', ignore the return value of *_precmd. this fixes PR [bin/10781]. - rename what sysdb provides from `databases' to `sysdb', to reflect the name of the script. - improve the comments in rc.subr
68 lines
1.3 KiB
Bash
Executable File
68 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $NetBSD: ipsec,v 1.6 2000/09/19 13:04:38 lukem Exp $
|
|
#
|
|
|
|
# PROVIDE: ipsec
|
|
# REQUIRE: root beforenetlkm mountcritlocal tty
|
|
|
|
# it does not really require beforenetlkm.
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ipsec"
|
|
rcvar=$name
|
|
start_precmd="ipsec_prestart"
|
|
start_cmd="ipsec_start"
|
|
stop_precmd="test -f /etc/ipsec.conf"
|
|
stop_cmd="ipsec_stop"
|
|
reload_cmd="ipsec_reload"
|
|
extra_commands="reload"
|
|
|
|
ipsec_prestart()
|
|
{
|
|
if [ ! -f /etc/ipsec.conf ]; then
|
|
warn "/etc/ipsec.conf not readable; ipsec start aborted."
|
|
#
|
|
# If booting directly to multiuser, send SIGTERM to
|
|
# the parent (/etc/rc) to abort the boot
|
|
#
|
|
if [ "$autoboot" = yes ]; then
|
|
echo "ERROR: ABORTING BOOT (sending SIGTERM to parent)!"
|
|
kill -TERM $$
|
|
exit 1
|
|
fi
|
|
return 1
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
ipsec_start()
|
|
{
|
|
echo "Installing ipsec manual keys/policies."
|
|
/sbin/setkey -f /etc/ipsec.conf
|
|
}
|
|
|
|
ipsec_stop()
|
|
{
|
|
echo "Clearing ipsec manual keys/policies."
|
|
|
|
# still not 100% sure if we would like to do this.
|
|
# it is very questionable to do this during shutdown session, since
|
|
# it can hang any of remaining IPv4/v6 session.
|
|
#
|
|
/sbin/setkey -F
|
|
/sbin/setkey -FP
|
|
}
|
|
|
|
ipsec_reload()
|
|
{
|
|
echo "Reloading ipsec manual keys/policies."
|
|
/sbin/setkey -F
|
|
/sbin/setkey -FP
|
|
/sbin/setkey -f /etc/ipsec.conf
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|