summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/sysctl
blob: 90c4f2cf8cfd6bb394096611c351aae8cc05c71a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh
#
# $NetBSD: sysctl,v 1.8 2000/06/13 16:29:55 itojun Exp $
#

# PROVIDE: sysctl
# REQUIRE: root ipfilter ipsec

. /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__
		sysctl -w kern.defcorename=$defcorename
	fi

	if [ -n "$nfsiod_flags" ]; then
		cat <<__EOF__
*** WARNING: /etc/rc.conf \$nfsiod_flags setting is obsolete. Please
*** 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
	fi
}

load_rc_config $name
run_rc_command "$1"
OpenPOWER on IntegriCloud