From: Jo-Philipp Wich Date: Mon, 25 Mar 2013 18:45:23 +0000 (+0000) Subject: base-files: fix bad start index in previous commit X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=6774ee66af36902c1b40fe4805ba7ad757328937;p=openwrt%2Fsvn-archive%2Farchive.git base-files: fix bad start index in previous commit SVN-Revision: 36130 --- diff --git a/package/base-files/files/etc/init.d/sysctl b/package/base-files/files/etc/init.d/sysctl index beeb79f7e6..81b0c9ba14 100755 --- a/package/base-files/files/etc/init.d/sysctl +++ b/package/base-files/files/etc/init.d/sysctl @@ -1,7 +1,7 @@ #!/bin/sh /etc/rc.common # Copyright (C) 2006 OpenWrt.org -START=0 +START=00 start() { [ -f /etc/sysctl.conf ] && sysctl -p -e >&- }