CloudStack VR password server
| 61 | |
| 62 | |
| 63 | class CsPasswdSvc(): |
| 64 | """ |
| 65 | CloudStack VR password server |
| 66 | """ |
| 67 | |
| 68 | def __init__(self, ip): |
| 69 | self.ip = ip |
| 70 | |
| 71 | def start(self): |
| 72 | CsHelper.service("cloud-password-server@%s" % self.ip, "start") |
| 73 | |
| 74 | def stop(self): |
| 75 | CsHelper.service("cloud-password-server@%s" % self.ip, "stop") |
| 76 | |
| 77 | def restart(self): |
| 78 | CsHelper.service("cloud-password-server@%s" % self.ip, "restart") |
| 79 | |
| 80 | |
| 81 | class CsDnsmasq(CsApp): |
no outgoing calls
no test coverage detected