Skip to content

Commit 5eb3d1a

Browse files
committed
dns/ddclient/dyndns2: fix the ovh-dyndns as reported in #3679
This commit fixes the update process for ovh-dyndns - part of the #3679
1 parent d5ae01f commit 5eb3d1a

File tree

1 file changed

+2
-1
lines changed
  • dns/ddclient/src/opnsense/scripts/ddclient/lib/account

1 file changed

+2
-1
lines changed

dns/ddclient/src/opnsense/scripts/ddclient/lib/account/dyndns2.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ def execute(self):
8989
'params': {
9090
'hostname': self.settings.get('hostnames'),
9191
'myip': self.current_address,
92-
'wildcard': 'ON' if self.settings.get('wildcard', False) else 'NOCHG'
92+
'wildcard': 'ON' if self.settings.get('wildcard', False) else 'NOCHG',
93+
'system': 'dyndns'
9394
},
9495
'auth': HTTPBasicAuth(self.settings.get('username'), self.settings.get('password')),
9596
'headers': {

0 commit comments

Comments
 (0)