Merge remote-tracking branch 'qubesos/pr/29'
* qubesos/pr/29: removed unnecessary comparison with True and changed to sysctl instead of remove Fixed #1930: Delete autostart Symlink when deleting a VM
This commit is contained in:
commit
62e68d52a3
@ -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"):
|
||||
subprocess.call(["sudo", "systemctl", "-q", "disable","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):
|
||||
|
Loading…
Reference in New Issue
Block a user