diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2021-02-19 19:02:38 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-02-19 21:24:26 +0100 |
commit | fa98c99ea7f7c5bec3962fa52f4d3496a9777024 (patch) | |
tree | 9dac44e5ee42e9e710d61934a38b018a3c9b13b8 /sysctl.d | |
parent | fileio: extend comment about file sizes in virtual file systems (diff) | |
download | systemd-fa98c99ea7f7c5bec3962fa52f4d3496a9777024.tar.xz systemd-fa98c99ea7f7c5bec3962fa52f4d3496a9777024.zip |
sysctl.d: silence warning if net.core.default_qdisc cannot be set
Kernels can be compiled without the attribute. It's fine if this is not
set, so silence the warning.
Diffstat (limited to 'sysctl.d')
-rw-r--r-- | sysctl.d/50-default.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysctl.d/50-default.conf b/sysctl.d/50-default.conf index 5279c17092..f41e24bcbc 100644 --- a/sysctl.d/50-default.conf +++ b/sysctl.d/50-default.conf @@ -45,7 +45,7 @@ net.ipv4.conf.*.promote_secondaries = 1 -net.ipv4.ping_group_range = 0 2147483647 # Fair Queue CoDel packet scheduler to fight bufferbloat -net.core.default_qdisc = fq_codel +-net.core.default_qdisc = fq_codel # Enable hard and soft link protection fs.protected_hardlinks = 1 |