base-files: do not warn about nonexistant sysctl overrides (some of them are config...
authorFelix Fietkau <nbd@openwrt.org>
Fri, 29 Jan 2010 02:17:11 +0000 (02:17 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 29 Jan 2010 02:17:11 +0000 (02:17 +0000)
SVN-Revision: 19375

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

index 35d5e30c75114fc70960c78cbe93b62faa735991..2397790555793c1aeecd3890b5800f9ec96ecc0b 100755 (executable)
@@ -3,5 +3,5 @@
 
 START=99
 start() {
-       [ -f /etc/sysctl.conf ] && sysctl -p >&-
+       [ -f /etc/sysctl.conf ] && sysctl -p -e >&-
 }