(self)
| 66 | self.config = config |
| 67 | |
| 68 | def set(self): |
| 69 | logging.debug("Router redundancy status is %s", self.cl.is_redundant()) |
| 70 | if self.cl.is_redundant(): |
| 71 | self._redundant_on() |
| 72 | else: |
| 73 | self._redundant_off() |
| 74 | |
| 75 | def _redundant_off(self): |
| 76 | CsHelper.service("conntrackd", "stop") |
no test coverage detected