summaryrefslogtreecommitdiff
blob: 9b8aaf8e9b328dcc2c2a2224ff0a0f1004ac56ea (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
#!/sbin/openrc-run
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

depend() {
	after checkroot root
}

start() {
	ebegin "Configuring kernel parameters"

	if [ ! -f /etc/sysctl.conf ]; then
		eend 1 "/etc/sysctl.conf" "not found"
		return 1
	fi
	
	local retval=0 var= comments=
	while read var comments ; do
		case "${var}" in
			""|"#"*) continue;;
		esac
		sysctl "${var}" >/dev/null || retval=1
	done < /etc/sysctl.conf
	eend ${retval} "Some errors were encountered"
}

# vim: set ts=4 :