summaryrefslogtreecommitdiffstats
path: root/target/linux/package
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/package')
-rwxr-xr-xtarget/linux/package/base-files/files/aruba-2.6/etc/init.d/S40network16
1 files changed, 0 insertions, 16 deletions
diff --git a/target/linux/package/base-files/files/aruba-2.6/etc/init.d/S40network b/target/linux/package/base-files/files/aruba-2.6/etc/init.d/S40network
deleted file mode 100755
index df7c6b351..000000000
--- a/target/linux/package/base-files/files/aruba-2.6/etc/init.d/S40network
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-. /etc/functions.sh
-[ "$FAILSAFE" != "true" -a -e /etc/config/network ] && . /etc/config/network
-case "$1" in
- start|restart)
- ifup lan
- ifup wan
- ifup wifi
- wifi up
-
- for route in $(nvram get static_route); do {
- eval "set $(echo $route | sed 's/:/ /g')"
- $DEBUG route add -net $1 netmask $2 gw $3 metric $4 dev $5
- } done
- ;;
-esac