From: Dan Walsh <dwalsh(a)redhat.com>
---
bin/virt-sandbox-service | 3 +++
1 file changed, 3 insertions(+)
diff --git a/bin/virt-sandbox-service b/bin/virt-sandbox-service
index 942f788..d7f43a5 100755
--- a/bin/virt-sandbox-service
+++ b/bin/virt-sandbox-service
@@ -333,6 +333,9 @@ class GenericContainer(Container):
self.save_config()
def create(self):
+ config_path = self.get_config_path()
+ if os.path.exists(config_path):
+ raise ValueError([_("%s already exists") % config_path ])
try:
self.create_generic()
except Exception, e:
--
1.8.2.1