summaryrefslogtreecommitdiff
path: root/init.d.BSD/sysctl
blob: 4112c8f7ab1b98a8554615f02fc2ffd5a3c845d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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 $?
}