Dissallow export when node are running and are not always running

Fix #677
pull/712/head
Julien Duponchelle 8 years ago
parent 37f972dea1
commit ee50790ab5
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -635,7 +635,8 @@ class Project:
If a node is started or paused return True
"""
for node in self._nodes.values():
if node.status != "stopped":
# Some node type are always running we ignore them
if node.status != "stopped" and node.node_type in ("qemu", "docker", "dynamips", "vpcs", "vmware", "virtualbox", "iou"):
return True
return False

Loading…
Cancel
Save