openrc/init.d.Linux/sysctl

19 lines
301 B
Plaintext

#!/sbin/runscript
# Copyright 2007-2008 Roy Marples
# All rights reserved
depend()
{
use hostname
before bootmisc logger
}
start()
{
[ "${RC_SYS}" = "VPS" ] && return 0
[ -e /etc/sysctl.conf ] || return 0
ebegin "Configuring kernel parameters"
sysctl -p /etc/sysctl.conf >/dev/null
eend $?
}