]> git.ipfire.org Git - oddments/ddns.git/commitdiff
Allow forcing an update.
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 10 Jun 2014 22:09:06 +0000 (00:09 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 10 Jun 2014 22:09:06 +0000 (00:09 +0200)
src/ddns/__init__.py
src/ddns/providers.py

index 673ba27684d38da4dd62ba6d608f2aab3be866b7..2fb5e021e969f56ed4570b4ca4fc78ad6a90ebda 100644 (file)
@@ -133,7 +133,7 @@ class DDNSCore(object):
                        if not entry in self.entries:
                                self.entries.append(entry)
 
-       def updateall(self):
+       def updateall(self, force=False):
                # If there are no entries, there is nothing to do.
                if not self.entries:
                        logger.debug(_("Found no entries in the configuration file. Exiting."))
@@ -141,11 +141,11 @@ class DDNSCore(object):
 
                # Update them all.
                for entry in self.entries:
-                       self.update(entry)
+                       self.update(entry, force=force)
 
-       def update(self, entry):
+       def update(self, entry, force=False):
                try:
-                       entry()
+                       entry(force=force)
 
                except DDNSUpdateError, e:
                        logger.error(_("Dynamic DNS update for %(hostname)s (%(provider)s) failed:") % \
index 21159727ad989ca297604ed1574af78901d6568d..03201baadee0b3352ac34edc1df6689b8f7b084d 100644 (file)
@@ -115,9 +115,12 @@ class DDNSProvider(object):
        def protocols(self):
                return self.INFO.get("protocols")
 
-       def __call__(self):
+       def __call__(self, force=False):
+               if force:
+                       logger.info(_("Updating %s forced") % self.hostname)
+
                # Check if we actually need to update this host.
-               if self.is_uptodate(self.protocols):
+               elif self.is_uptodate(self.protocols):
                        logger.info(_("%s is already up to date") % self.hostname)
                        return