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-Tag: reboot~10848 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=7aace3ee3e569c923170815beb430e2f8384e323;p=openwrt%2Fstaging%2Fjogo.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 >&- }