summaryrefslogtreecommitdiffstats
path: root/main/openrc/sysctl-flags.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/openrc/sysctl-flags.patch')
-rw-r--r--main/openrc/sysctl-flags.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/main/openrc/sysctl-flags.patch b/main/openrc/sysctl-flags.patch
deleted file mode 100644
index 664d6502c..000000000
--- a/main/openrc/sysctl-flags.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- openrc-0.8.3/init.d/sysctl.Linux.in.orig
-+++ openrc-0.8.3/init.d/sysctl.Linux.in
-@@ -18,9 +18,9 @@
- for conf in /etc/sysctl.d/*.conf /etc/sysctl.conf; do
- if [ -r "$conf" ]; then
- vebegin "applying $conf"
-- if ! err=$(sysctl -q -p "$conf" 2>&1) ; then
-+ if ! err=$(sysctl -p "$conf" 2>&1) ; then
- errs="${errs} ${err}"
-- sysctl -q -e -p "${conf}"
-+ sysctl -e -p "${conf}"
- fi
- veend $? || retval=1
- fi