This commit reversed it to read: SYSCTL_POST="/etc/sysctl.conf /etc/sysctl.d/*" The idea is to go from implicit to explicit, i.e. from defaults to overrides in sysctl.d subdirectory. This behavior is expected in RHEL-6. But many distributions use the reverse approach (state before this commit). The idea is that /etc/sysctl.d/* hosts default settings provided by individual packages which can be overriden by "master" /etc/sysctl.conf. In Fedora (F20 checked) it is implemented by the following symlink: /etc/sysctl.d/99-sysctl.conf -> ../sysctl.conf So it is also effectively reversed in comparison to RHEL-6. As tuned-0.x is supported only in RHEL-6, we need to follow RHEL-6 behaviour in tuned-1.0 branch. This change doesn't affect tuned-2.x. resolves: rhbz#1036049 Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com>
27 lines
1.2 KiB
Text
27 lines
1.2 KiB
Text
# ktune service configuration
|
|
|
|
# This is the ktune sysctl file. You can comment this out to prevent ktune
|
|
# from applying its sysctl settings.
|
|
SYSCTL="/etc/sysctl.ktune"
|
|
|
|
# Use *.conf files in the ktune configuration directory /etc/ktune.d.
|
|
# Value: yes|no, default: yes
|
|
# It is useful if you want to load settings from additional files. Set this to
|
|
# no if you to prevent ktune from using these additional files.
|
|
USE_KTUNE_D="yes"
|
|
|
|
# This is the custom sysctl configuration file. Any settings in this file will
|
|
# be applied after the ktune settings, overriding them. Comment this out to
|
|
# use only the ktune settings.
|
|
SYSCTL_POST="/etc/sysctl.conf /etc/sysctl.d/*"
|
|
|
|
# This is the I/O scheduler ktune will use. This will *not* override anything
|
|
# explicitly set on the kernel command line, nor will it change the scheduler
|
|
# for any block device that is using a non-default scheduler when ktune starts.
|
|
# You should probably leave this on "deadline", but "as", "cfq", and "noop" are
|
|
# also legal values. Comment this out to prevent ktune from changing I/O
|
|
# scheduler settings.
|
|
ELEVATOR="deadline"
|
|
|
|
# These are the devices, that should be tuned with the ELEVATOR
|
|
ELEVATOR_TUNE_DEVS="/sys/block/{sd,cciss}*/queue/scheduler"
|