NetBSD/etc/rc.d/sysctl

41 lines
817 B
Plaintext
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: sysctl,v 1.9 2000/08/21 23:31:24 lukem Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: sysctl
# REQUIRE: root ipfilter ipsec
2000-03-10 14:53:23 +03:00
. /etc/rc.subr
name="sysctl"
start_cmd="sysctl_start"
stop_cmd=":"
sysctl_start()
{
if [ -n "$defcorename" ]; then
cat <<__EOF__
*** WARNING: /etc/rc.conf \$defcorename setting is obsolete. Please
*** set kern.defcorename in /etc/sysctl.conf
__EOF__
2000-05-07 23:03:25 +04:00
sysctl -w kern.defcorename=$defcorename
fi
2000-05-07 23:03:25 +04:00
if [ -n "$nfsiod_flags" ]; then
cat <<__EOF__
*** WARNING: /etc/rc.conf \$nfsiod_flags setting is obsolete. Please
2000-05-07 23:03:25 +04:00
*** remove it. If it was set to other than the default of "-n 4", then
*** set vfs.nfs.iothreads in /etc/sysctl.conf
__EOF__
fi
if [ -r /etc/sysctl.conf ]; then
echo "Setting sysctl variables:"
sysctl -f /etc/sysctl.conf
2000-03-10 14:53:23 +03:00
fi
}
load_rc_config $name
2000-03-10 14:53:23 +03:00
run_rc_command "$1"