mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
phpDynDNS.inc: Fix missing break statement in switch case for Linode
Commit ab0ccc3be9 seems to have mistakenly
removed the `break` statement for the `switch` case for Linode. This
commit adds it back, which fixes dynamic DNS updates for Linode.
Signed-off-by: Andrew Gunnerson <chillermillerlong@hotmail.com>
This commit is contained in:
committed by
Franco Fichtner
parent
c5a1daa706
commit
843644393d
@@ -97,8 +97,8 @@
|
||||
* dynv6 v6 - Last Tested: 25 June 2019
|
||||
* DigitalOcean - Last Tested: 25 June 2019
|
||||
* Azure DNS - Last Tested: 16 October 2019
|
||||
* Linode - Last Tested: 12 November 2019
|
||||
* Linode v6 - Last Tested: 12 November 2019
|
||||
* Linode - Last Tested: 25 February 2020
|
||||
* Linode v6 - Last Tested: 25 February 2020
|
||||
* +====================================================+
|
||||
*
|
||||
* @author E.Kristensen
|
||||
@@ -990,6 +990,7 @@ class updatedns
|
||||
} else {
|
||||
log_error("Dynamic DNS($fqdn): No zone found for domain");
|
||||
}
|
||||
break;
|
||||
case 'azurev6':
|
||||
case 'azure':
|
||||
$hostname = "{$this->_dnsHost}";
|
||||
|
||||
Reference in New Issue
Block a user