2008-03-03 02:44:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2008-01-11 21:01:10 +05:30
|
|
|
# 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
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2007-11-20 17:40:32 +05:30
|
|
|
use hostname
|
|
|
|
before bootmisc logger
|
2008-03-29 00:35:26 +05:30
|
|
|
keyword noopenvz noprefix novserver
|
2007-11-20 17:40:32 +05:30
|
|
|
}
|
|
|
|
|
2008-03-25 20:05:52 +05:30
|
|
|
start()
|
|
|
|
{
|
|
|
|
[ -e /etc/sysctl.conf ] || return 0
|
|
|
|
ebegin "Configuring kernel parameters"
|
2008-03-26 15:06:34 +05:30
|
|
|
sysctl -p >/dev/null
|
2008-03-25 20:05:52 +05:30
|
|
|
eend $? "Some errors were encountered"
|
2007-11-20 17:40:32 +05:30
|
|
|
}
|