Fixed #1930: Delete autostart Symlink when deleting a VM

This commit is contained in:
Mario Geckler 2016-04-27 12:46:05 +02:00
parent 01bc257265
commit d9b8516b6d
No known key found for this signature in database
GPG Key ID: 7C4B54C6A55270A1

View File

@ -1412,6 +1412,11 @@ class QubesVm(object):
e.get_error_code())
raise
if os.path.exists("/etc/systemd/system/multi-user.target.wants/qubes-vm@" + self.name + ".service") == True:
retcode = subprocess.call(["sudo", "rm", "/etc/systemd/system/multi-user.target.wants/qubes-vm@" + self.name + ".service"])
if retcode != 0:
raise QubesException("Failed to delete autostart entry for VM")
self.storage.remove_from_disk()
def write_firewall_conf(self, conf):