diff options
author | Jo-Philipp Wich <jo@mein.io> | 2016-09-24 14:30:24 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2016-09-24 14:38:20 +0200 |
commit | 1c09849f6cf1b8bd94819ca11910ce444c3d3019 (patch) | |
tree | 5ceeb7ebf279d8208045f7ba83264bbed0e45115 /target/linux/lantiq | |
parent | df9efc94970ccc1e43915839ec3f49d54729cc3d (diff) | |
download | upstream-1c09849f6cf1b8bd94819ca11910ce444c3d3019.tar.gz upstream-1c09849f6cf1b8bd94819ca11910ce444c3d3019.tar.bz2 upstream-1c09849f6cf1b8bd94819ca11910ce444c3d3019.zip |
treewide: remove bad local shell variable declarations
Local variable declarations outside of functions are illegal since the Busybox
update to v1.25.0, therfore remove them from the appropriate places.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'target/linux/lantiq')
-rwxr-xr-x | target/linux/lantiq/base-files/sbin/dsl_notify.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/target/linux/lantiq/base-files/sbin/dsl_notify.sh b/target/linux/lantiq/base-files/sbin/dsl_notify.sh index 01d04881c4..ba197f1995 100755 --- a/target/linux/lantiq/base-files/sbin/dsl_notify.sh +++ b/target/linux/lantiq/base-files/sbin/dsl_notify.sh @@ -16,7 +16,6 @@ include /lib/network scan_interfaces -local led config_load system config_get led led_dsl sysfs if [ -n "$led" ]; then @@ -28,18 +27,14 @@ if [ -n "$led" ]; then esac fi -local interfaces=`ubus list network.interface.\* | cut -d"." -f3` -local ifc +interfaces=`ubus list network.interface.\* | cut -d"." -f3` for ifc in $interfaces; do - local up json_load "$(ifstatus $ifc)" json_get_var up up - local auto config_get_bool auto "$ifc" auto 1 - local proto json_get_var proto proto if [ "$DSL_INTERFACE_STATUS" = "UP" ]; then |