(self)
| 420 | raise |
| 421 | |
| 422 | def restore(self): |
| 423 | try: |
| 424 | if self.netMgrRunning: |
| 425 | self.syscfg.svo.enableService("NetworkManager") |
| 426 | self.syscfg.svo.startService("NetworkManager") |
| 427 | bash("service network restart") |
| 428 | return True |
| 429 | except: |
| 430 | logging.debug(formatExceptionInfo()) |
| 431 | return False |
| 432 | |
| 433 | class cgroupConfig(serviceCfgBase): |
| 434 | def __init__(self, syscfg): |
nothing calls this directly
no test coverage detected