openrc/init.d.Linux/sysctl.in

19 lines
357 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
# Copyright 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.
2007-11-20 12:10:32 +00:00
depend()
{
2007-11-20 12:10:32 +00:00
use hostname
before bootmisc logger
2008-03-02 21:13:21 +00:00
keyword noprefix novps
2007-11-20 12:10:32 +00:00
}
start()
{
2007-11-20 12:10:32 +00:00
[ -e /etc/sysctl.conf ] || return 0
ebegin "Configuring kernel parameters"
sysctl -p /etc/sysctl.conf >/dev/null
eend $?
}