diff options
author | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2016-02-06 16:33:59 +0100 |
---|---|---|
committer | Christian Schoenebeck <christian.schoenebeck@gmail.com> | 2016-02-06 16:33:59 +0100 |
commit | e4856c76318e7f4cb992286d978086a435f2fc51 (patch) | |
tree | 03791bfe2423d2f46ff20e60626eaa997083cbc6 /applications/luci-app-ddns/luasrc/controller | |
parent | 8ae57f62044ab9ac73a9113417e33c23aedc1974 (diff) |
luci-app-ddns: some fixes
- fixes for https://dev.openwrt.org/ticket/21787
- changed detection of BusyBox nslookup compiled with musl, thanks to Arjen de Korte
Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
Diffstat (limited to 'applications/luci-app-ddns/luasrc/controller')
-rwxr-xr-x | applications/luci-app-ddns/luasrc/controller/ddns.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-ddns/luasrc/controller/ddns.lua b/applications/luci-app-ddns/luasrc/controller/ddns.lua index e141d07b6f..7cfbc56a0b 100755 --- a/applications/luci-app-ddns/luasrc/controller/ddns.lua +++ b/applications/luci-app-ddns/luasrc/controller/ddns.lua @@ -22,7 +22,7 @@ local srv_ver_min = "2.6.0" -- minimum version of service required local srv_ver_cmd = [[/usr/lib/ddns/dynamic_dns_updater.sh --version | awk {'print $2'}]] local app_name = "luci-app-ddns" local app_title = "Dynamic DNS" -local app_version = "2.4.0-1" +local app_version = "2.4.1-1" function index() local nxfs = require "nixio.fs" -- global definitions not available |