d29db70efb
According to the sysctl man page, the --system option causes sysctl to process all system configuration files, which include the following: /run/sysctl.d/*.conf /etc/sysctl.d/*.conf /usr/local/lib/sysctl.d/*.conf /usr/lib/sysctl.d/*.conf /lib/sysctl.d/*.conf /etc/sysctl.conf X-Gentoo-Bug: 484796 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=484796
17 lines
311 B
Plaintext
17 lines
311 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()
|
|
{
|
|
ebegin "Configuring kernel parameters"
|
|
sysctl --system
|
|
eend $? "Unable to configure some kernel parameters"
|
|
}
|