Delete lxd container in state stopped (#2885)
If a lxd container is stopped, do not stop it before deleting it.pull/4420/head
parent
05c8630b48
commit
acadc2ac9c
|
@ -364,7 +364,7 @@ class LXDContainerManagement(object):
|
|||
self.actions.append('restart')
|
||||
|
||||
def _delete_container(self):
|
||||
return self.client.do('DELETE', '/1.0/containers/{0}'.format(self.name))
|
||||
self.client.do('DELETE', '/1.0/containers/{0}'.format(self.name))
|
||||
self.actions.append('delete')
|
||||
|
||||
def _freeze_container(self):
|
||||
|
@ -446,7 +446,8 @@ class LXDContainerManagement(object):
|
|||
if self.old_state != 'absent':
|
||||
if self.old_state == 'frozen':
|
||||
self._unfreeze_container()
|
||||
self._stop_container()
|
||||
if self.old_state != 'stopped':
|
||||
self._stop_container()
|
||||
self._delete_container()
|
||||
|
||||
def _frozen(self):
|
||||
|
|
Loading…
Reference in New Issue