openrc/init.d.Linux/sysctl
2008-01-11 11:45:59 +00:00

19 lines
320 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 $?
}
# vim: set ts=4 :