This commit is contained in:
Ad Schellevis 2023-11-07 09:21:00 +01:00
parent 9b0f5edf56
commit f6f72bb524
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
PLUGIN_NAME= ddclient
PLUGIN_VERSION= 1.16
PLUGIN_REVISION= 1
PLUGIN_REVISION= 2
PLUGIN_DEPENDS= ddclient-devel py${PLUGIN_PYTHON}-boto3
PLUGIN_COMMENT= Dynamic DNS client
PLUGIN_MAINTAINER= ad@opnsense.org

View file

@ -98,7 +98,7 @@ class DynDNS2(BaseAccount):
}
req = requests.get(**req_opts)
if 200 >= req.status_code < 300:
if 200 <= req.status_code < 300:
if self.is_verbose:
syslog.syslog(
syslog.LOG_NOTICE,