openrc/init.d.Linux/sysctl

19 lines
362 B
Plaintext
Raw Normal View History

2007-11-20 17:40:32 +05:30
#!/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
}
start()
{
2008-01-06 18:19:41 +05:30
[ "${RC_SYS}" = "VPS" ] && return 0
2007-11-20 17:40:32 +05:30
[ -e /etc/sysctl.conf ] || return 0
ebegin "Configuring kernel parameters"
sysctl -p /etc/sysctl.conf >/dev/null
eend $?
}