Przeglądaj źródła

base-files: do not warn about nonexistant sysctl overrides (some of them are config dependent)

SVN-Revision: 19375
Felix Fietkau 16 lat temu
rodzic
commit
a254a9ff08
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      package/base-files/files/etc/init.d/sysctl

+ 1 - 1
package/base-files/files/etc/init.d/sysctl

@@ -3,5 +3,5 @@
 
 START=99
 start() {
-	[ -f /etc/sysctl.conf ] && sysctl -p >&-
+	[ -f /etc/sysctl.conf ] && sysctl -p -e >&-
 }