28 lines
1 KiB
Diff
28 lines
1 KiB
Diff
From 91f496b1f65af29832192bad949685a7bc25da0a Mon Sep 17 00:00:00 2001
|
|
From: Matthias Gerstner <matthias.gerstner@suse.de>
|
|
Date: Wed, 16 Sep 2020 09:19:39 +0200
|
|
Subject: [PATCH] sysctl.d/50-default.conf: fix ping_group_range syntax error
|
|
|
|
It turns out that sysctl passes on quotes to the proc pseudo file, so
|
|
remove them to fix this error:
|
|
|
|
```
|
|
sysctl: setting key "net.ipv4.ping_group_range": Invalid argument
|
|
```
|
|
---
|
|
files/usr/lib/sysctl.d/50-default.conf | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/files/usr/lib/sysctl.d/50-default.conf b/files/usr/lib/sysctl.d/50-default.conf
|
|
index 2ab1019..51bece2 100644
|
|
--- a/files/usr/lib/sysctl.d/50-default.conf
|
|
+++ b/files/usr/lib/sysctl.d/50-default.conf
|
|
@@ -29,7 +29,7 @@ net.ipv6.conf.default.use_tempaddr = 1
|
|
# bits (bsc#1174504).
|
|
# this only allows users to handle ICMP ECHO REQUESTs and REPLYs, nothing
|
|
# else.
|
|
-net.ipv4.ping_group_range = "0 2147483647"
|
|
+net.ipv4.ping_group_range = 0 2147483647
|
|
|
|
# increase the number of possible inotify(7) watches
|
|
fs.inotify.max_user_watches = 65536
|