summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-ddns/luasrc/model/cbi
diff options
context:
space:
mode:
authorChristian Schoenebeck <christian.schoenebeck@gmail.com>2016-09-27 11:14:34 +0200
committerGitHub <noreply@github.com>2016-09-27 11:14:34 +0200
commitddb98f186f2c63f7d5f48be6dc1d4d966a0adbab (patch)
tree0ebe79491e490f3a3ae0c77155bbaaa34d985179 /applications/luci-app-ddns/luasrc/model/cbi
parent07591d77aaf4194a8f7cf42d0a7e1c073c9a6e05 (diff)
parenta043bca0ed4d5e385ae93773982ef92e1d50bc01 (diff)
Merge pull request #805 from chris5560/master
luci-app-ddns: no longer check for name lookup progs to support force ip version
Diffstat (limited to 'applications/luci-app-ddns/luasrc/model/cbi')
-rw-r--r--applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua b/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua
index 1f5ad68c56..21827b7659 100644
--- a/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua
+++ b/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua
@@ -116,9 +116,9 @@ if not DDNS.has_forceip then
value = value .. "<br />- " ..
translate("You should install 'wget' or 'curl' or 'uclient-fetch' package.")
end
- if not (DDNS.has_bindhost or DDNS.has_hostip) then
+ if not DDNS.has_bindhost then
value = value .. "<br />- " ..
- translate("You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' package for DNS requests.")
+ translate("You should install 'bind-host' or 'knot-host' or 'drill' package for DNS requests.")
end
fi.value = value
end