From: Felix Fietkau Date: Fri, 29 Jan 2010 02:17:11 +0000 (+0000) Subject: base-files: do not warn about nonexistant sysctl overrides (some of them are config... X-Git-Tag: reboot~21251 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=a254a9ff0841eb342061b5faedd605a84c91c317;p=openwrt%2Fstaging%2Flynxis.git base-files: do not warn about nonexistant sysctl overrides (some of them are config dependent) SVN-Revision: 19375 --- diff --git a/package/base-files/files/etc/init.d/sysctl b/package/base-files/files/etc/init.d/sysctl index 35d5e30c75..2397790555 100755 --- a/package/base-files/files/etc/init.d/sysctl +++ b/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 >&- }