openrc/init.d/sysctl.BSD.in

33 lines
689 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2009 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
keyword -prefix
2007-11-20 17:40:32 +05:30
}
start()
{
[ -e /etc/sysctl.conf ] || return 0
local retval=0 var= comments= conf=
ebegin "Configuring kernel parameters"
eindent
for conf in /etc/sysctl.d/*.conf /etc/sysctl.conf; do
if [ -r "$conf" ]; then
vebegin "applying $conf"
while read var comments; do
case "$var" in
""|"#"*) continue;;
esac
sysctl -w "$var" >/dev/null || retval=1
done < "$conf"
veend $retval
fi
done
eoutdent
2009-04-27 13:21:18 +05:30
eend $retval "Some errors were encountered"
2007-11-20 17:40:32 +05:30
}