dns/dyndns: bump version after fix, style updates

Exclude r53 library, it should probably be "contrib".
This commit is contained in:
Franco Fichtner
2018-01-03 06:20:44 +00:00
parent afcdb85f44
commit b2ab319a2f
3 changed files with 284 additions and 196 deletions
+1 -2
View File
@@ -1,6 +1,5 @@
PLUGIN_NAME= dyndns
PLUGIN_VERSION= 1.4
PLUGIN_REVISION= 1
PLUGIN_VERSION= 1.5
PLUGIN_COMMENT= Dynamic DNS Support
PLUGIN_MAINTAINER= franco@opnsense.org
@@ -148,20 +148,21 @@ function dyndns_configure_client($conf)
return;
}
$dns = new updatedns($dnsService = $conf['type'],
$dns = new updatedns(
$dnsService = $conf['type'],
$dnsHost = $conf['host'],
$dnsUser = $conf['username'],
$dnsPass = $conf['password'],
$dnsWilcard = $conf['wildcard'],
$dnsMX = $conf['mx'],
$dnsIf = "{$conf['interface']}",
$dnsBackMX = NULL,
$dnsServer = NULL,
$dnsPort = NULL,
$dnsBackMX = null,
$dnsServer = null,
$dnsPort = null,
$dnsUpdateURL = "{$conf['updateurl']}",
$forceUpdate = $conf['force'],
$dnsZoneID=$conf['zoneid'],
$dnsTTL=$conf['ttl'],
$dnsZoneID = $conf['zoneid'],
$dnsTTL = $conf['ttl'],
$dnsResultMatch = "{$conf['resultmatch']}",
$dnsRequestIf = "{$conf['requestif']}",
$dnsID = "{$conf['id']}",
File diff suppressed because it is too large Load Diff