3e9bb3b021
We do not need to spam the console with variable settings by default. This fixes #51. X-Gentoo-Bug: 541922 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=541922
20 lines
365 B
Plaintext
20 lines
365 B
Plaintext
#!@SBINDIR@/openrc-run
|
|
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
|
|
# Released under the 2-clause BSD license.
|
|
|
|
depend()
|
|
{
|
|
before bootmisc logger
|
|
keyword -prefix -vserver
|
|
}
|
|
|
|
start()
|
|
{
|
|
local quiet
|
|
yesno $rc_verbose || quiet=-q
|
|
|
|
ebegin "Configuring kernel parameters"
|
|
sysctl ${quiet} --system
|
|
eend $? "Unable to configure some kernel parameters"
|
|
}
|