Added a --replace option to virt-image which allows it to replace an existing machine if it is current running or defined
# HG changeset patch
# User "Bryan M. Kearney <bkearney@redhat.com>"
# Date 1214497967 14400
# Node ID efba908eb79ad0bf2805c27f784de92578207f1b
# Parent 63aca2dbb3154a65505b1ccef080a8887742cef5
Added a --replace option to virt-image which allows it to replace an existing machine if it is current running or defined
diff -r 63aca2dbb315 -r efba908eb79a virt-image
--- a/virt-image Tue Jun 24 12:30:24 2008 -0400
+++ b/virt-image Thu Jun 26 12:32:47 2008 -0400
@@ -142,7 +142,10 @@ def parse_args():
help=_("The zero-based index of the boot record to use"))
parser.add_option("", "--force", action="store_true", dest="force",
help=_("Do not prompt for input. Answers yes where applicable, terminates for all other prompts"),
- default=False)
+ default=False)
+ parser.add_option("", "--replace",action="store_true", dest="replace",
+ help=_("Overwrite, or destroy, an existing image with the same name"),
+ default=False)
- def _do_install(self, consolecb, meter):
+ def _do_install(self, consolecb, meter, removeOld = False):
try:
- if self.conn.lookupByName(self.name) is not None:
- raise RuntimeError, _("Domain named %s already exists!") %(self.name,)
+ vm = self.conn.lookupByName(self.name)
+ if removeOld:
+ if vm is not None:
+ if vm.ID() == -1:
+ logging.info("Removing old definition for image %s" %(self.name))
+ vm.undefine()
+ else:
+ logging.info("Destroying image %s" %(self.name))
+ vm.destroy()
+ else:
+ if vm is not None:
+ raise RuntimeError, _("Domain named %s already exists!") %(self.name,)
except libvirt.libvirtError:
pass
_______________________________________________
et-mgmt-tools mailing list
et-mgmt-tools@redhat.com
https://www.redhat.com/mailman/listinfo/et-mgmt-tools