diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-08-23 13:31:44 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-08-23 13:31:44 +0000 |
commit | f515f9ccc62b3974ad1371c5d8bdeda08dccc037 (patch) | |
tree | 5dc68ace9e35613bf57c395d87de69eed8ea371d /openwrt/package/base-files/default/etc/init.d | |
parent | b80a2426c5c61a7bb442fcff1873912a1bea8408 (diff) | |
download | mtk-20170518-f515f9ccc62b3974ad1371c5d8bdeda08dccc037.zip mtk-20170518-f515f9ccc62b3974ad1371c5d8bdeda08dccc037.tar.gz mtk-20170518-f515f9ccc62b3974ad1371c5d8bdeda08dccc037.tar.bz2 |
fix typo in S40network
SVN-Revision: 1735
Diffstat (limited to 'openwrt/package/base-files/default/etc/init.d')
-rwxr-xr-x | openwrt/package/base-files/default/etc/init.d/S40network | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openwrt/package/base-files/default/etc/init.d/S40network b/openwrt/package/base-files/default/etc/init.d/S40network index a5afe52..c4226d3 100755 --- a/openwrt/package/base-files/default/etc/init.d/S40network +++ b/openwrt/package/base-files/default/etc/init.d/S40network @@ -1,5 +1,6 @@ #!/bin/sh -[ -e /etc/config/network] && . /etc/config/network +. /etc/functions.sh +[ -e /etc/config/network ] && . /etc/config/network case "$1" in start|restart) ifup lan |