コード例 #1
0
ファイル: network.py プロジェクト: Kryndex/lago
    def start(self):
        if brctl.exists(self._libvirt_name()):
            return

        brctl.create(self._libvirt_name())
        try:
            super().start()
        except:
            brctl.destroy(self._libvirt_name())
コード例 #2
0
ファイル: network.py プロジェクト: Kryndex/lago
 def stop(self):
     super().stop()
     if brctl.exists(self._libvirt_name()):
         brctl.destroy(self._libvirt_name())
コード例 #3
0
 def stop(self):
     super(BridgeNetwork, self).stop()
     if brctl.exists(self._libvirt_name()):
         brctl.destroy(self._libvirt_name())