2007-11-20 17:40:32 +05:30
|
|
|
#!/sbin/runscript
|
2008-01-11 17:15:59 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples
|
2007-11-20 17:40:32 +05:30
|
|
|
# All rights reserved
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2007-11-20 17:40:32 +05:30
|
|
|
use hostname
|
|
|
|
before bootmisc logger
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2007-11-20 17:40:32 +05:30
|
|
|
[ -e /etc/sysctl.conf ] || return 0
|
|
|
|
|
|
|
|
ebegin "Configuring kernel parameters"
|
|
|
|
local retval=0 var= comments=
|
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"
|
|
|
|
eend $?
|
|
|
|
}
|