summaryrefslogtreecommitdiff
path: root/init.d.BSD/sysctl
blob: 704915f06293b3260358f1c918cf1d91f5f2bc0e (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
#!/sbin/runscript
# Copyright 2007-2008 Roy Marples
# All rights reserved

depend()
{
	use hostname
	before bootmisc logger
}

start()
{
	[ -e /etc/sysctl.conf ] || return 0
	
	ebegin "Configuring kernel parameters"
	local retval=0 var= comments=
	while read var comments; do
		case "${var}" in
			""|"#"*) continue;;
		esac
		sysctl -w "${var}" >/dev/null || retval=1
	done < /etc/sysctl.conf
	eend ${retval} "Some errors were encountered"
	eend $?
}