openrc/init.d/sysctl.BSD.in

25 lines
525 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
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
2009-04-27 13:21:18 +05:30
case "$var" in
2007-11-20 17:40:32 +05:30
""|"#"*) continue;;
esac
2009-04-27 13:21:18 +05:30
sysctl -w "$var" >/dev/null || retval=1
2007-11-20 17:40:32 +05:30
done < /etc/sysctl.conf
2009-04-27 13:21:18 +05:30
eend $retval "Some errors were encountered"
2007-11-20 17:40:32 +05:30
}