From: jow Date: Mon, 25 Mar 2013 18:45:23 +0000 (+0000) Subject: base-files: fix bad start index in previous commit X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=commitdiff_plain;h=d208aa2b0bbd43ffab2d54960c8b695632f9948f;ds=inline base-files: fix bad start index in previous commit git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36130 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- 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 >&- }