openrc/init.d/sysctl.BSD.in

25 lines
528 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
# Copyright 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
2007-11-20 17:40:32 +05:30
depend()
{
2007-11-20 17:40:32 +05:30
use hostname
before bootmisc logger
2008-03-03 02:43:21 +05:30
keyword noprefix
2007-11-20 17:40:32 +05:30
}
start()
{
[ -e /etc/sysctl.conf ] || return 0
2007-11-20 17:40:32 +05:30
local retval=0 var= comments=
ebegin "Configuring kernel parameters"
2007-11-28 21:15:03 +05:30
while read var comments; do
2007-11-20 17:40:32 +05:30
case "${var}" in
""|"#"*) continue;;
esac
2008-01-11 05:18:53 +05:30
sysctl -w "${var}" >/dev/null || retval=1
2007-11-20 17:40:32 +05:30
done < /etc/sysctl.conf
eend ${retval} "Some errors were encountered"
2007-11-20 17:40:32 +05:30
}