Merge pull request #5904 from TDT-AG/pr/20180412-mwna3-fix-ubus

mwan3: in ubus rpcd script fix shell local issue
This commit is contained in:
Dirk Brenken 2018-04-12 11:37:49 +02:00 committed by GitHub
commit 86b2607d95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 59 additions and 54 deletions

View File

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=mwan3
PKG_VERSION:=2.6.13
PKG_VERSION:=2.6.14
PKG_RELEASE:=1
PKG_MAINTAINER:=Florian Eckert <fe@dev.tdt.de>
PKG_LICENSE:=GPLv2

View File

@ -74,7 +74,9 @@ get_mwan3_status() {
fi
}
case "$1" in
main () {
case "$1" in
list)
json_init
json_add_object "status"
@ -130,4 +132,7 @@ case "$1" in
;;
esac
;;
esac
esac
}
main "$@"