From cd0ab0d217cd3358edcf1d3360997b65e6b199e2 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 10 Feb 2014 15:24:12 -0500 Subject: [PATCH] virt-image: Print warning that it is planned for removal --- man/virt-image.pod | 4 ++++ virt-image | 13 ++++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/man/virt-image.pod b/man/virt-image.pod index 28142198..50b1ab52 100644 --- a/man/virt-image.pod +++ b/man/virt-image.pod @@ -10,6 +10,10 @@ B [OPTION]... IMAGE.XML =head1 DESCRIPTION + +WARNING: B is planned for removal in the near future. If you are depending on this tool, please contact the developers at virt-tools-list@redhat.com + + B is a command line tool for creating virtual machines from an XML image descriptor C (L). Most attributes of the virtual machine are taken from the XML descriptor (e.g., where the diff --git a/virt-image b/virt-image index f727d119..871f2284 100755 --- a/virt-image +++ b/virt-image @@ -21,7 +21,10 @@ # MA 02110-1301 USA. import argparse +import logging +import os import sys +import time import urlgrabber.progress as progress @@ -95,7 +98,6 @@ def main(conn=None): fail(_("The index for --boot must be between 0 and %d") % (nboots - 1)) - # Build the Installer instance installer = virtimage.ImageInstaller(conn, image, boot_index=options.boot) guest = conn.caps.build_virtinst_guest(conn, *installer.get_caps_guest()) @@ -125,6 +127,15 @@ def main(conn=None): guest.add_default_devices() + msg = _("\nvirt-image is planned for removal in the near future. " + "If you are depending on this tool, please contact the developers " + "at virt-tools-list@redhat.com\n") + logging.warning(msg) + if "VIRTINST_TEST_SUITE" not in os.environ: + if options.quiet: + print msg + time.sleep(3) + # we've got everything -- try to start the install if options.xmlonly: start_xml, final_xml = guest.start_install(return_xml=True)