2018-01-28 04:46:39 +08:00
|
|
|
#!/usr/bin/env python3
|
2013-03-18 05:06:52 +08:00
|
|
|
#
|
2014-02-12 17:21:38 +08:00
|
|
|
# Copyright 2005-2014 Red Hat, Inc.
|
2013-03-18 05:06:52 +08:00
|
|
|
#
|
2018-04-04 21:35:41 +08:00
|
|
|
# This work is licensed under the GNU GPLv2 or later.
|
2018-03-21 03:00:02 +08:00
|
|
|
# See the COPYING file in the top-level directory.
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
import argparse
|
|
|
|
import logging
|
2016-06-18 00:09:45 +08:00
|
|
|
import os
|
2013-03-18 05:06:52 +08:00
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
2013-08-10 03:00:16 +08:00
|
|
|
import libvirt
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
import virtinst
|
2014-09-20 08:31:22 +08:00
|
|
|
from virtinst import cli
|
2013-03-18 05:06:52 +08:00
|
|
|
from virtinst.cli import fail, print_stdout, print_stderr
|
|
|
|
|
|
|
|
|
|
|
|
##############################
|
|
|
|
# Validation utility helpers #
|
|
|
|
##############################
|
|
|
|
|
|
|
|
install_methods = "--location URL, --cdrom CD/ISO, --pxe, --import, --boot hd|cdrom|..."
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2018-09-03 04:27:34 +08:00
|
|
|
def all_install_options(options):
|
|
|
|
return [options.pxe, options.cdrom, options.location,
|
|
|
|
options.import_install]
|
|
|
|
|
|
|
|
|
2018-06-12 22:50:24 +08:00
|
|
|
def install_specified(options):
|
2018-09-03 04:27:34 +08:00
|
|
|
return any([bool(o) for o in all_install_options(options)])
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2018-09-03 22:07:47 +08:00
|
|
|
def implied_cdrom_install(guest):
|
|
|
|
return [d.is_cdrom() for d in guest.devices.disk]
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def supports_pxe(guest):
|
|
|
|
"""
|
|
|
|
Return False if we are pretty sure the config doesn't support PXE
|
|
|
|
"""
|
2018-03-21 05:23:34 +08:00
|
|
|
for nic in guest.devices.interface:
|
2013-03-18 05:06:52 +08:00
|
|
|
if nic.type == nic.TYPE_USER:
|
|
|
|
continue
|
|
|
|
if nic.type != nic.TYPE_VIRTUAL:
|
|
|
|
return True
|
|
|
|
|
|
|
|
try:
|
2013-09-24 22:00:01 +08:00
|
|
|
netobj = nic.conn.networkLookupByName(nic.source)
|
2013-09-23 05:04:22 +08:00
|
|
|
xmlobj = virtinst.Network(nic.conn, parsexml=netobj.XMLDesc(0))
|
|
|
|
if xmlobj.can_pxe():
|
2013-03-18 05:06:52 +08:00
|
|
|
return True
|
2017-07-24 16:26:48 +08:00
|
|
|
except Exception:
|
2013-03-18 05:06:52 +08:00
|
|
|
logging.debug("Error checking if PXE supported", exc_info=True)
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2013-04-22 00:28:14 +08:00
|
|
|
def check_cdrom_option_error(options):
|
|
|
|
if options.cdrom_short and options.cdrom:
|
|
|
|
fail("Cannot specify both -c and --cdrom")
|
|
|
|
|
|
|
|
if options.cdrom_short:
|
|
|
|
if "://" in options.cdrom_short:
|
|
|
|
fail("-c specified with what looks like a URI. Did you mean "
|
|
|
|
"to use --connect? If not, use --cdrom instead")
|
|
|
|
options.cdrom = options.cdrom_short
|
|
|
|
|
2013-04-05 00:04:07 +08:00
|
|
|
if not options.cdrom:
|
|
|
|
return
|
|
|
|
|
2013-04-22 00:28:14 +08:00
|
|
|
# Catch a strangely common error of users passing -vcpus=2 instead of
|
|
|
|
# --vcpus=2. The single dash happens to map to enough shortened options
|
|
|
|
# that things can fail weirdly if --paravirt is also specified.
|
2013-04-05 00:04:07 +08:00
|
|
|
for vcpu in [o for o in sys.argv if o.startswith("-vcpu")]:
|
|
|
|
if options.cdrom == vcpu[3:]:
|
|
|
|
fail("You specified -vcpus, you want --vcpus")
|
|
|
|
|
|
|
|
|
2015-04-05 05:10:45 +08:00
|
|
|
#################################
|
|
|
|
# Back compat option conversion #
|
|
|
|
#################################
|
|
|
|
|
|
|
|
def convert_old_printxml(options):
|
|
|
|
if options.xmlstep:
|
|
|
|
options.xmlonly = options.xmlstep
|
|
|
|
del(options.xmlstep)
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
def convert_old_sound(options):
|
2014-02-06 01:32:53 +08:00
|
|
|
if not options.sound:
|
2013-09-28 08:16:35 +08:00
|
|
|
return
|
2014-02-06 01:32:53 +08:00
|
|
|
for idx in range(len(options.sound)):
|
|
|
|
if options.sound[idx] is None:
|
|
|
|
options.sound[idx] = "default"
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
2014-01-22 04:36:34 +08:00
|
|
|
def convert_old_init(options):
|
|
|
|
if not options.init:
|
|
|
|
return
|
|
|
|
if not options.boot:
|
|
|
|
options.boot = ""
|
|
|
|
options.boot += ",init=%s" % options.init
|
|
|
|
logging.debug("Converted old --init to --boot %s", options.boot)
|
|
|
|
|
|
|
|
|
2014-09-21 07:16:13 +08:00
|
|
|
def _do_convert_old_disks(options):
|
2013-09-28 08:16:35 +08:00
|
|
|
paths = virtinst.util.listify(options.file_paths)
|
|
|
|
sizes = virtinst.util.listify(options.disksize)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
def padlist(l, padsize):
|
2013-09-28 08:16:35 +08:00
|
|
|
l = virtinst.util.listify(l)
|
2013-03-18 05:06:52 +08:00
|
|
|
l.extend((padsize - len(l)) * [None])
|
|
|
|
return l
|
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
disklist = padlist(paths, max(0, len(sizes)))
|
|
|
|
sizelist = padlist(sizes, len(disklist))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-09-28 08:16:35 +08:00
|
|
|
opts = []
|
2016-04-19 04:42:12 +08:00
|
|
|
for idx, path in enumerate(disklist):
|
2013-09-28 08:16:35 +08:00
|
|
|
optstr = ""
|
2016-04-19 04:42:12 +08:00
|
|
|
if path:
|
|
|
|
optstr += "path=%s" % path
|
2013-09-28 08:16:35 +08:00
|
|
|
if sizelist[idx]:
|
|
|
|
if optstr:
|
|
|
|
optstr += ","
|
|
|
|
optstr += "size=%s" % sizelist[idx]
|
|
|
|
if options.sparse is False:
|
|
|
|
if optstr:
|
|
|
|
optstr += ","
|
|
|
|
optstr += "sparse=no"
|
|
|
|
logging.debug("Converted to new style: --disk %s", optstr)
|
|
|
|
opts.append(optstr)
|
|
|
|
|
2014-01-21 07:04:23 +08:00
|
|
|
options.disk = opts
|
2014-09-21 07:16:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
def convert_old_disks(options):
|
|
|
|
if options.nodisks and (options.file_paths or
|
|
|
|
options.disk or
|
|
|
|
options.disksize):
|
|
|
|
fail(_("Cannot specify storage and use --nodisks"))
|
|
|
|
|
|
|
|
if ((options.file_paths or options.disksize or not options.sparse) and
|
|
|
|
options.disk):
|
|
|
|
fail(_("Cannot mix --file, --nonsparse, or --file-size with --disk "
|
|
|
|
"options. Use --disk PATH[,size=SIZE][,sparse=yes|no]"))
|
|
|
|
|
|
|
|
if not options.disk:
|
|
|
|
if options.nodisks:
|
|
|
|
options.disk = ["none"]
|
|
|
|
else:
|
|
|
|
_do_convert_old_disks(options)
|
|
|
|
|
|
|
|
del(options.file_paths)
|
|
|
|
del(options.disksize)
|
|
|
|
del(options.sparse)
|
|
|
|
del(options.nodisks)
|
|
|
|
logging.debug("Distilled --disk options: %s", options.disk)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2014-09-07 23:57:04 +08:00
|
|
|
def convert_old_os_options(options):
|
|
|
|
distro_variant = options.distro_variant
|
|
|
|
distro_type = options.distro_type
|
|
|
|
if not distro_type and not distro_variant:
|
|
|
|
# Default to distro autodetection
|
|
|
|
options.distro_variant = "auto"
|
|
|
|
return
|
|
|
|
|
|
|
|
distro_variant = distro_variant and str(distro_variant).lower() or None
|
|
|
|
distro_type = distro_type and str(distro_type).lower() or None
|
|
|
|
distkey = distro_variant or distro_type
|
|
|
|
if not distkey or distkey == "none":
|
|
|
|
options.distro_variant = "none"
|
|
|
|
else:
|
|
|
|
options.distro_variant = distkey
|
|
|
|
|
|
|
|
|
2014-09-20 08:31:22 +08:00
|
|
|
def convert_old_memory(options):
|
|
|
|
if options.memory:
|
|
|
|
return
|
|
|
|
if not options.oldmemory:
|
|
|
|
return
|
|
|
|
options.memory = str(options.oldmemory)
|
|
|
|
|
|
|
|
|
|
|
|
def convert_old_cpuset(options):
|
|
|
|
if not options.cpuset:
|
|
|
|
return
|
|
|
|
if not options.vcpus:
|
|
|
|
options.vcpus = ""
|
|
|
|
options.vcpus += ",cpuset=%s" % options.cpuset
|
|
|
|
logging.debug("Generated compat cpuset: --vcpus %s", options.vcpus)
|
|
|
|
|
|
|
|
|
2014-09-21 06:56:39 +08:00
|
|
|
def convert_old_networks(options):
|
|
|
|
if options.nonetworks:
|
|
|
|
if options.mac:
|
|
|
|
fail(_("Cannot use --mac with --nonetworks"))
|
|
|
|
if options.bridge:
|
|
|
|
fail(_("Cannot use --bridge with --nonetworks"))
|
|
|
|
if options.network:
|
|
|
|
fail(_("Cannot use --nonetworks with --network"))
|
|
|
|
options.network = ["none"]
|
|
|
|
|
|
|
|
macs = virtinst.util.listify(options.mac)
|
2014-09-20 08:31:22 +08:00
|
|
|
networks = virtinst.util.listify(options.network)
|
2014-09-21 06:56:39 +08:00
|
|
|
bridges = virtinst.util.listify(options.bridge)
|
2014-09-20 08:31:22 +08:00
|
|
|
|
|
|
|
if bridges and networks:
|
|
|
|
fail(_("Cannot mix both --bridge and --network arguments"))
|
|
|
|
|
|
|
|
if bridges:
|
|
|
|
# Convert old --bridges to --networks
|
|
|
|
networks = ["bridge:" + b for b in bridges]
|
|
|
|
|
|
|
|
def padlist(l, padsize):
|
|
|
|
l = virtinst.util.listify(l)
|
|
|
|
l.extend((padsize - len(l)) * [None])
|
|
|
|
return l
|
|
|
|
|
|
|
|
# If a plain mac is specified, have it imply a default network
|
2014-09-21 06:56:39 +08:00
|
|
|
networks = padlist(networks, max(len(macs), 1))
|
2014-09-20 08:31:22 +08:00
|
|
|
macs = padlist(macs, len(networks))
|
|
|
|
|
2016-04-19 04:42:12 +08:00
|
|
|
for idx, ignore in enumerate(networks):
|
2014-09-20 08:31:22 +08:00
|
|
|
if networks[idx] is None:
|
|
|
|
networks[idx] = "default"
|
|
|
|
if macs[idx]:
|
|
|
|
networks[idx] += ",mac=%s" % macs[idx]
|
|
|
|
|
|
|
|
# Handle old format of bridge:foo instead of bridge=foo
|
|
|
|
for prefix in ["network", "bridge"]:
|
|
|
|
if networks[idx].startswith(prefix + ":"):
|
|
|
|
networks[idx] = networks[idx].replace(prefix + ":",
|
|
|
|
prefix + "=")
|
|
|
|
|
2014-09-21 06:56:39 +08:00
|
|
|
del(options.mac)
|
|
|
|
del(options.bridge)
|
|
|
|
del(options.nonetworks)
|
|
|
|
|
2014-09-20 08:31:22 +08:00
|
|
|
options.network = networks
|
2014-09-21 06:56:39 +08:00
|
|
|
logging.debug("Distilled --network options: %s", options.network)
|
2014-09-20 08:31:22 +08:00
|
|
|
|
|
|
|
|
2018-06-06 02:43:19 +08:00
|
|
|
def convert_old_graphics(options):
|
2014-09-20 08:31:22 +08:00
|
|
|
vnc = options.vnc
|
|
|
|
vncport = options.vncport
|
|
|
|
vnclisten = options.vnclisten
|
|
|
|
nographics = options.nographics
|
|
|
|
sdl = options.sdl
|
|
|
|
keymap = options.keymap
|
|
|
|
graphics = options.graphics
|
|
|
|
|
|
|
|
if graphics and (vnc or sdl or keymap or vncport or vnclisten):
|
|
|
|
fail(_("Cannot mix --graphics and old style graphical options"))
|
|
|
|
|
|
|
|
optnum = sum([bool(g) for g in [vnc, nographics, sdl, graphics]])
|
|
|
|
if optnum > 1:
|
|
|
|
raise ValueError(_("Can't specify more than one of VNC, SDL, "
|
|
|
|
"--graphics or --nographics"))
|
|
|
|
|
|
|
|
if options.graphics:
|
|
|
|
return
|
|
|
|
|
|
|
|
if optnum == 0:
|
|
|
|
return
|
|
|
|
|
|
|
|
# Build a --graphics command line from old style opts
|
|
|
|
optstr = ((vnc and "vnc") or
|
|
|
|
(sdl and "sdl") or
|
|
|
|
(nographics and ("none")))
|
|
|
|
if vnclisten:
|
|
|
|
optstr += ",listen=%s" % vnclisten
|
|
|
|
if vncport:
|
|
|
|
optstr += ",port=%s" % vncport
|
|
|
|
if keymap:
|
|
|
|
optstr += ",keymap=%s" % keymap
|
|
|
|
|
|
|
|
logging.debug("--graphics compat generated: %s", optstr)
|
|
|
|
options.graphics = [optstr]
|
|
|
|
|
|
|
|
|
|
|
|
def convert_old_features(options):
|
|
|
|
if getattr(options, "features", None):
|
|
|
|
return
|
|
|
|
|
|
|
|
opts = ""
|
|
|
|
if options.noacpi:
|
|
|
|
opts += "acpi=off"
|
|
|
|
if options.noapic:
|
|
|
|
if opts:
|
|
|
|
opts += ","
|
|
|
|
opts += "apic=off"
|
|
|
|
options.features = opts or None
|
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
##################################
|
|
|
|
# Install media setup/validation #
|
|
|
|
##################################
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
def set_distro_variant(options, guest, installer):
|
2014-09-07 23:57:04 +08:00
|
|
|
try:
|
2018-09-04 03:21:11 +08:00
|
|
|
installer.check_location(guest)
|
2014-09-07 23:57:04 +08:00
|
|
|
|
2018-09-13 05:23:01 +08:00
|
|
|
distro = None
|
2018-09-03 22:07:47 +08:00
|
|
|
if options.distro_variant == "auto":
|
2018-09-13 05:23:01 +08:00
|
|
|
distro = installer.detect_distro(guest)
|
|
|
|
elif options.distro_variant != "none":
|
|
|
|
distro = options.distro_variant
|
|
|
|
|
|
|
|
if distro:
|
|
|
|
guest.set_os_name(distro)
|
2017-05-06 00:47:21 +08:00
|
|
|
except ValueError as e:
|
2015-06-02 20:21:58 +08:00
|
|
|
fail(_("Error validating install location: %s") % str(e))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2018-09-07 08:28:05 +08:00
|
|
|
def do_test_media_detection(conn, options):
|
|
|
|
url = options.test_media_detection
|
|
|
|
guest = virtinst.Guest(conn)
|
|
|
|
if options.arch:
|
|
|
|
guest.os.arch = options.arch
|
|
|
|
if options.os_type:
|
|
|
|
guest.os.os_type = options.os_type
|
|
|
|
guest.set_capabilities_defaults()
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
installer = virtinst.DistroInstaller(conn)
|
|
|
|
installer.location = url
|
|
|
|
print_stdout(installer.detect_distro(guest), do_force=True)
|
2014-09-21 08:32:19 +08:00
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
#############################
|
|
|
|
# General option validation #
|
|
|
|
#############################
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
def validate_required_options(options, guest, installer):
|
2013-03-18 05:06:52 +08:00
|
|
|
# Required config. Don't error right away if nothing is specified,
|
|
|
|
# aggregate the errors to help first time users get it right
|
|
|
|
msg = ""
|
|
|
|
|
2018-09-03 22:07:47 +08:00
|
|
|
if not guest.name:
|
2015-04-12 07:25:46 +08:00
|
|
|
msg += "\n" + _("--name is required")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2018-09-03 22:07:47 +08:00
|
|
|
if not guest.memory:
|
2014-06-16 11:56:02 +08:00
|
|
|
msg += "\n" + _("--memory amount in MiB is required")
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2013-07-17 19:53:47 +08:00
|
|
|
if (not guest.os.is_container() and
|
2014-09-21 07:16:13 +08:00
|
|
|
not (options.disk or options.filesystem)):
|
2014-05-12 06:58:17 +08:00
|
|
|
msg += "\n" + (
|
2014-09-21 07:16:13 +08:00
|
|
|
_("--disk storage must be specified (override with --disk none)"))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
if not installer:
|
2014-05-12 06:58:17 +08:00
|
|
|
msg += "\n" + (
|
|
|
|
_("An install method must be specified\n(%(methods)s)") %
|
2017-08-17 19:01:28 +08:00
|
|
|
{"methods": install_methods})
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-02-05 05:16:39 +08:00
|
|
|
if msg:
|
2013-03-18 05:06:52 +08:00
|
|
|
fail(msg)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2014-09-08 01:50:22 +08:00
|
|
|
_cdrom_location_man_page = _("See the man page for examples of "
|
|
|
|
"using --location with CDROM media")
|
|
|
|
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
def check_option_collisions(options, guest, installer):
|
2016-06-01 21:32:56 +08:00
|
|
|
if options.noreboot and options.transient:
|
|
|
|
fail(_("--noreboot and --transient can not be specified together"))
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
# Install collisions
|
2018-09-03 04:27:34 +08:00
|
|
|
if sum([bool(l) for l in all_install_options(options)]) > 1:
|
2013-03-18 05:06:52 +08:00
|
|
|
fail(_("Only one install method can be used (%(methods)s)") %
|
2017-08-05 14:39:32 +08:00
|
|
|
{"methods": install_methods})
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2018-09-03 04:27:34 +08:00
|
|
|
if guest.os.is_container() and install_specified(options):
|
2013-03-18 05:06:52 +08:00
|
|
|
fail(_("Install methods (%s) cannot be specified for "
|
|
|
|
"container guests") % install_methods)
|
|
|
|
|
2013-07-17 19:53:47 +08:00
|
|
|
if guest.os.is_xenpv():
|
2013-03-18 05:06:52 +08:00
|
|
|
if options.pxe:
|
|
|
|
fail(_("Network PXE boot is not supported for paravirtualized "
|
|
|
|
"guests"))
|
|
|
|
if options.cdrom or options.livecd:
|
|
|
|
fail(_("Paravirtualized guests cannot install off cdrom media."))
|
|
|
|
|
|
|
|
if (options.location and
|
2013-07-06 08:36:28 +08:00
|
|
|
guest.conn.is_remote() and not
|
2013-10-06 22:08:04 +08:00
|
|
|
guest.conn.support_remote_url_install()):
|
2013-03-18 05:06:52 +08:00
|
|
|
fail(_("Libvirt version does not support remote --location installs"))
|
|
|
|
|
2014-02-03 04:17:44 +08:00
|
|
|
cdrom_err = ""
|
2018-09-04 03:21:11 +08:00
|
|
|
if installer.cdrom:
|
2014-11-21 05:36:23 +08:00
|
|
|
cdrom_err = " " + _cdrom_location_man_page
|
2014-01-21 07:04:23 +08:00
|
|
|
if not options.location and options.extra_args:
|
2014-02-03 04:17:44 +08:00
|
|
|
fail(_("--extra-args only work if specified with --location.") +
|
|
|
|
cdrom_err)
|
2014-01-21 07:04:23 +08:00
|
|
|
if not options.location and options.initrd_inject:
|
2014-02-03 04:17:44 +08:00
|
|
|
fail(_("--initrd-inject only works if specified with --location.") +
|
|
|
|
cdrom_err)
|
|
|
|
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
def _show_nographics_warnings(options, guest, installer):
|
2018-03-21 05:23:34 +08:00
|
|
|
if guest.devices.graphics:
|
2014-02-03 04:17:44 +08:00
|
|
|
return
|
|
|
|
if not options.autoconsole:
|
|
|
|
return
|
2014-11-22 02:57:30 +08:00
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
if installer.cdrom:
|
2017-05-06 02:21:15 +08:00
|
|
|
logging.warning(_("CDROM media does not print to the text console "
|
2014-02-03 04:17:44 +08:00
|
|
|
"by default, so you likely will not see text install output. "
|
2014-11-21 05:36:23 +08:00
|
|
|
"You might want to use --location.") + " " +
|
|
|
|
_cdrom_location_man_page)
|
2014-02-03 04:17:44 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
if not options.location:
|
|
|
|
return
|
|
|
|
|
|
|
|
# Trying --location --nographics with console connect. Warn if
|
|
|
|
# they likely won't see any output.
|
|
|
|
|
2018-03-21 05:23:34 +08:00
|
|
|
if not guest.devices.console:
|
2017-05-06 02:21:15 +08:00
|
|
|
logging.warning(_("No --console device added, you likely will not "
|
2014-02-03 04:17:44 +08:00
|
|
|
"see text install output from the guest."))
|
|
|
|
return
|
|
|
|
|
|
|
|
serial_arg = "console=ttyS0"
|
2014-08-04 04:22:07 +08:00
|
|
|
serial_arm_arg = "console=ttyAMA0"
|
2015-09-22 20:42:09 +08:00
|
|
|
hvc_arg = "console=hvc0"
|
2014-02-03 04:17:44 +08:00
|
|
|
|
2015-09-22 20:42:09 +08:00
|
|
|
console_type = serial_arg
|
|
|
|
if guest.os.is_arm():
|
|
|
|
console_type = serial_arm_arg
|
2018-03-21 05:23:34 +08:00
|
|
|
if guest.devices.console[0].target_type in ["virtio", "xen"]:
|
2015-09-22 20:42:09 +08:00
|
|
|
console_type = hvc_arg
|
2015-11-12 04:23:19 +08:00
|
|
|
if guest.os.is_ppc64() or guest.os.is_arm_machvirt():
|
|
|
|
# Later arm/ppc kernels figure out console= automatically, so don't
|
|
|
|
# warn about it.
|
2015-11-09 22:15:43 +08:00
|
|
|
return
|
2015-09-22 20:42:09 +08:00
|
|
|
|
2018-09-03 22:07:47 +08:00
|
|
|
for args in (options.extra_args or []):
|
2016-03-25 03:59:29 +08:00
|
|
|
if console_type in (args or ""):
|
2016-03-18 10:28:17 +08:00
|
|
|
return
|
2014-02-03 04:17:44 +08:00
|
|
|
|
2017-05-06 02:21:15 +08:00
|
|
|
logging.warning(_("Did not find '%(console_string)s' in --extra-args, "
|
2015-09-22 20:42:09 +08:00
|
|
|
"which is likely required to see text install output from the "
|
|
|
|
"guest."), {"console_string": console_type})
|
2014-02-03 04:17:44 +08:00
|
|
|
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
def show_warnings(options, guest, installer):
|
2014-02-03 04:17:44 +08:00
|
|
|
if options.pxe and not supports_pxe(guest):
|
2017-05-06 02:21:15 +08:00
|
|
|
logging.warning(_("The guest's network configuration does not support "
|
2014-02-03 04:17:44 +08:00
|
|
|
"PXE"))
|
|
|
|
|
2018-09-13 05:23:01 +08:00
|
|
|
if (guest.osinfo.name == "generic" and
|
2016-04-08 05:36:53 +08:00
|
|
|
options.distro_variant not in ["none", "generic"]):
|
2017-05-06 02:21:15 +08:00
|
|
|
logging.warning(_("No operating system detected, VM performance may "
|
2014-09-08 01:55:45 +08:00
|
|
|
"suffer. Specify an OS with --os-variant for optimal results."))
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
_show_nographics_warnings(options, guest, installer)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
##########################
|
|
|
|
# Guest building helpers #
|
|
|
|
##########################
|
|
|
|
|
2018-09-03 22:07:47 +08:00
|
|
|
def build_installer(options, guest):
|
|
|
|
instclass = None
|
|
|
|
cdrom = False
|
|
|
|
location = None
|
|
|
|
|
2018-09-03 22:58:25 +08:00
|
|
|
if (options.cdrom or
|
|
|
|
options.location or
|
|
|
|
options.livecd):
|
2018-09-03 22:07:47 +08:00
|
|
|
location = options.location or options.cdrom
|
|
|
|
cdrom = bool(options.cdrom)
|
|
|
|
instclass = virtinst.DistroInstaller
|
|
|
|
elif options.pxe:
|
|
|
|
instclass = virtinst.PXEInstaller
|
2018-09-03 22:58:25 +08:00
|
|
|
elif (guest.os.is_container() or
|
|
|
|
options.import_install or
|
2018-09-03 22:07:47 +08:00
|
|
|
options.xmlonly or
|
|
|
|
options.boot):
|
2018-09-03 22:58:25 +08:00
|
|
|
instclass = virtinst.Installer
|
2018-09-03 22:07:47 +08:00
|
|
|
elif implied_cdrom_install(guest):
|
|
|
|
# Explicit install options always take precedent over this case
|
|
|
|
cdrom = True
|
2013-03-18 05:06:52 +08:00
|
|
|
instclass = virtinst.DistroInstaller
|
|
|
|
|
2018-09-03 22:07:47 +08:00
|
|
|
if not instclass:
|
|
|
|
# This triggers an error in validate_required_options
|
|
|
|
return None
|
|
|
|
|
|
|
|
installer = instclass(guest.conn)
|
2014-09-08 01:42:56 +08:00
|
|
|
if options.livecd:
|
|
|
|
installer.livecd = True
|
2018-09-03 22:07:47 +08:00
|
|
|
if cdrom:
|
|
|
|
installer.cdrom = cdrom
|
|
|
|
if location:
|
|
|
|
installer.location = location
|
|
|
|
if options.extra_args:
|
|
|
|
installer.extraargs = options.extra_args
|
|
|
|
if options.initrd_inject:
|
|
|
|
installer.initrd_injections = options.initrd_inject
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
return installer
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
def build_guest_instance(conn, options):
|
2018-09-07 07:07:15 +08:00
|
|
|
guest = virtinst.Guest(conn)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-02-05 05:16:39 +08:00
|
|
|
if options.name:
|
|
|
|
guest.name = options.name
|
2014-01-21 07:15:08 +08:00
|
|
|
if options.uuid:
|
|
|
|
guest.uuid = options.uuid
|
2014-01-25 09:03:30 +08:00
|
|
|
if options.description:
|
|
|
|
guest.description = options.description
|
2018-09-07 07:07:15 +08:00
|
|
|
if options.os_type:
|
|
|
|
guest.os.os_type = options.os_type
|
|
|
|
if options.virt_type:
|
|
|
|
guest.type = options.virt_type
|
|
|
|
if options.arch:
|
|
|
|
guest.os.arch = options.arch
|
|
|
|
if options.machine:
|
|
|
|
guest.os.machine = options.machine
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2016-06-14 19:37:21 +08:00
|
|
|
cli.parse_option_strings(options, guest, None)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2018-09-07 07:07:15 +08:00
|
|
|
# cli specific disk validation
|
2018-03-21 05:23:34 +08:00
|
|
|
for disk in guest.devices.disk:
|
2014-02-05 05:16:39 +08:00
|
|
|
cli.validate_disk(disk)
|
|
|
|
|
2018-09-13 05:23:01 +08:00
|
|
|
# Do this a bit early so we have os_type/arch checks for installer
|
|
|
|
# building, and distro variant detection
|
2018-09-07 07:07:15 +08:00
|
|
|
guest.set_capabilities_defaults()
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
installer = build_installer(options, guest)
|
2018-09-13 05:23:01 +08:00
|
|
|
if installer:
|
|
|
|
set_distro_variant(options, guest, installer)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2018-09-13 05:23:01 +08:00
|
|
|
validate_required_options(options, guest, installer)
|
2018-09-04 03:21:11 +08:00
|
|
|
check_option_collisions(options, guest, installer)
|
|
|
|
show_warnings(options, guest, installer)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
return guest, installer
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
###########################
|
|
|
|
# Install process helpers #
|
|
|
|
###########################
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
def start_install(guest, installer, options):
|
2017-01-18 20:11:43 +08:00
|
|
|
if options.wait is not None:
|
2013-03-18 05:06:52 +08:00
|
|
|
wait_on_install = True
|
|
|
|
wait_time = options.wait * 60
|
2016-06-18 00:09:45 +08:00
|
|
|
if "VIRTINST_TEST_SUITE" in os.environ and wait_time:
|
|
|
|
# Convert wait time to 1 second, for the test suite
|
|
|
|
wait_time = 1
|
virtinst: guest: drop 'continue_install' concept
continue_install is intended to facilitate windows XP style 3 stage
installs:
stage 1: initial dos style disk setup, reboot
stage 2: actual full installer, reboot
stage 3: OS is functional, virt-install is done
The code assumed that we needed to keep the cdrom as the primary
boot device for the second stage, so virt-install/virt-manager needed
to hang around through the second stage run, wait until the VM shutdown,
then encode the final XML to boot of the disk.
Windows is and always has been smart enough to handle that case though...
after the initial boot, if we set the hd as the primary boot device
for stage 2, the disk bits that windows already installed will make
use of the cdrom as necessary. So the entire premise of continue_install
is irrelevant. Maybe back when it was added, when xen didn't even have
working ACPI support, this served a purpose, but I'm pretty sure we
can safely drop it nowadays.
2016-06-17 04:13:54 +08:00
|
|
|
else:
|
|
|
|
wait_on_install = False
|
|
|
|
wait_time = -1
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# If --wait specified, we don't want the default behavior of waiting
|
|
|
|
# for virt-viewer to exit, since then we can't exit the app when time
|
|
|
|
# expires
|
|
|
|
wait_on_console = not wait_on_install
|
|
|
|
|
2014-09-21 06:20:41 +08:00
|
|
|
if wait_time == 0:
|
|
|
|
# --wait 0 implies --noautoconsole
|
|
|
|
autoconsole = False
|
|
|
|
else:
|
|
|
|
autoconsole = options.autoconsole
|
|
|
|
|
|
|
|
conscb = None
|
|
|
|
if autoconsole:
|
|
|
|
conscb = cli.get_console_cb(guest)
|
|
|
|
if not conscb:
|
|
|
|
# If there isn't any console to actually connect up,
|
|
|
|
# default to --wait -1 to get similarish behavior
|
|
|
|
autoconsole = False
|
|
|
|
if options.wait is None:
|
|
|
|
logging.warning(_("No console to launch for the guest, "
|
|
|
|
"defaulting to --wait -1"))
|
|
|
|
wait_on_install = True
|
|
|
|
wait_time = -1
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2015-04-12 07:25:46 +08:00
|
|
|
meter = cli.get_meter()
|
2013-03-18 05:06:52 +08:00
|
|
|
logging.debug("Guest.has_install_phase: %s",
|
2018-09-04 03:21:11 +08:00
|
|
|
installer.has_install_phase())
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# we've got everything -- try to start the install
|
|
|
|
print_stdout(_("\nStarting install..."))
|
|
|
|
|
2018-09-04 01:41:39 +08:00
|
|
|
domain = None
|
2013-03-18 05:06:52 +08:00
|
|
|
try:
|
|
|
|
start_time = time.time()
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
domain = installer.start_install(guest, meter=meter,
|
2018-09-04 01:45:09 +08:00
|
|
|
doboot=not options.noreboot,
|
|
|
|
transient=options.transient,
|
|
|
|
autostart=options.autostart)
|
2018-09-04 01:41:39 +08:00
|
|
|
cli.connect_console(guest, domain, conscb, wait_on_console)
|
2018-09-04 03:21:11 +08:00
|
|
|
check_domain(installer, domain, conscb, options.transient,
|
2016-06-17 23:43:41 +08:00
|
|
|
wait_on_install, wait_time, start_time)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2015-03-27 04:43:28 +08:00
|
|
|
print_stdout(_("Domain creation completed."))
|
2018-09-04 01:41:39 +08:00
|
|
|
if not options.transient and not domain.isActive():
|
2018-09-04 03:21:11 +08:00
|
|
|
if options.noreboot or not installer.has_install_phase():
|
2015-03-27 04:43:28 +08:00
|
|
|
print_stdout(
|
|
|
|
_("You can restart your domain by running:\n %s") %
|
|
|
|
cli.virsh_start_cmd(guest))
|
|
|
|
else:
|
|
|
|
print_stdout(_("Restarting guest."))
|
2018-09-04 01:41:39 +08:00
|
|
|
domain.create()
|
|
|
|
cli.connect_console(guest, domain, conscb, True)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
logging.debug("", exc_info=True)
|
|
|
|
print_stderr(_("Domain install interrupted."))
|
|
|
|
raise
|
2017-05-06 00:47:21 +08:00
|
|
|
except Exception as e:
|
2013-03-18 05:06:52 +08:00
|
|
|
fail(e, do_exit=False)
|
2018-09-04 01:41:39 +08:00
|
|
|
if domain is None:
|
2018-09-04 03:21:11 +08:00
|
|
|
installer.cleanup_created_disks(guest, meter)
|
2013-03-18 05:06:52 +08:00
|
|
|
cli.install_fail(guest)
|
|
|
|
|
2013-04-14 02:34:52 +08:00
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
def check_domain(installer, domain, conscb, transient,
|
2016-06-01 21:32:56 +08:00
|
|
|
wait_for_install, wait_time, start_time):
|
2013-03-18 05:06:52 +08:00
|
|
|
"""
|
|
|
|
Make sure domain ends up in expected state, and wait if for install
|
|
|
|
to complete if requested
|
|
|
|
"""
|
2016-06-18 00:12:17 +08:00
|
|
|
def check_domain_inactive():
|
2016-06-01 21:32:56 +08:00
|
|
|
try:
|
2018-09-04 01:41:39 +08:00
|
|
|
dominfo = domain.info()
|
2016-06-01 21:32:56 +08:00
|
|
|
state = dominfo[0]
|
|
|
|
logging.debug("Domain state after install: %s", state)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2016-06-01 21:32:56 +08:00
|
|
|
if state == libvirt.VIR_DOMAIN_CRASHED:
|
|
|
|
fail(_("Domain has crashed."))
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2018-09-04 01:41:39 +08:00
|
|
|
return not domain.isActive()
|
2017-05-06 00:47:21 +08:00
|
|
|
except libvirt.libvirtError as e:
|
2016-06-01 21:32:56 +08:00
|
|
|
if transient and e.get_error_code() == libvirt.VIR_ERR_NO_DOMAIN:
|
|
|
|
logging.debug("transient VM shutdown and disappeared.")
|
|
|
|
return True
|
|
|
|
raise
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2016-06-18 00:12:17 +08:00
|
|
|
if check_domain_inactive():
|
2016-06-17 23:43:41 +08:00
|
|
|
return
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2016-06-18 00:12:17 +08:00
|
|
|
if bool(conscb):
|
|
|
|
# We are trying to detect if the VM shutdown, or the user
|
|
|
|
# just closed the console and the VM is still running. In the
|
|
|
|
# the former case, libvirt may not have caught up yet with the
|
|
|
|
# VM having exited, so wait a bit and check again
|
|
|
|
time.sleep(2)
|
|
|
|
if check_domain_inactive():
|
|
|
|
return
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2016-06-18 00:12:17 +08:00
|
|
|
# If we reach here, the VM still appears to be running.
|
2013-03-18 05:06:52 +08:00
|
|
|
if not wait_for_install or wait_time == 0:
|
|
|
|
# User either:
|
|
|
|
# used --noautoconsole
|
|
|
|
# used --wait 0
|
|
|
|
# killed console and guest is still running
|
2018-09-04 03:21:11 +08:00
|
|
|
if not installer.has_install_phase():
|
2016-06-17 23:43:41 +08:00
|
|
|
return
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
print_stdout(
|
|
|
|
_("Domain installation still in progress. You can reconnect"
|
|
|
|
" to \nthe console to complete the installation process."))
|
|
|
|
sys.exit(0)
|
|
|
|
|
2016-06-17 23:43:41 +08:00
|
|
|
wait_forever = (wait_time < 0)
|
2013-03-18 05:06:52 +08:00
|
|
|
timestr = (not wait_forever and
|
2014-09-21 06:20:41 +08:00
|
|
|
_(" %d minutes") % (int(wait_time) / 60) or "")
|
2013-03-18 05:06:52 +08:00
|
|
|
print_stdout(
|
2014-09-21 06:20:41 +08:00
|
|
|
_("Domain installation still in progress. Waiting"
|
2013-09-21 00:10:34 +08:00
|
|
|
"%(time_string)s for installation to complete.") %
|
|
|
|
{"time_string": timestr})
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# Wait loop
|
|
|
|
while True:
|
2018-09-04 01:41:39 +08:00
|
|
|
if not domain.isActive():
|
2016-06-18 00:12:17 +08:00
|
|
|
print_stdout(_("Domain has shutdown. Continuing."))
|
|
|
|
break
|
|
|
|
|
2018-02-23 09:21:42 +08:00
|
|
|
time.sleep(1)
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
time_elapsed = (time.time() - start_time)
|
|
|
|
if not wait_forever and time_elapsed >= wait_time:
|
|
|
|
print_stdout(
|
|
|
|
_("Installation has exceeded specified time limit. "
|
2016-06-18 00:12:17 +08:00
|
|
|
"Exiting application."))
|
2013-03-18 05:06:52 +08:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
|
|
########################
|
|
|
|
# XML printing helpers #
|
|
|
|
########################
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
def xml_to_print(guest, installer, xmlonly, dry):
|
|
|
|
start_xml, final_xml = installer.start_install(
|
|
|
|
guest, dry=dry, return_xml=True)
|
2013-03-18 05:06:52 +08:00
|
|
|
if not start_xml:
|
|
|
|
start_xml = final_xml
|
|
|
|
final_xml = None
|
|
|
|
|
2015-04-05 05:10:45 +08:00
|
|
|
if dry and not xmlonly:
|
2013-03-18 05:06:52 +08:00
|
|
|
print_stdout(_("Dry run completed successfully"))
|
|
|
|
return
|
|
|
|
|
virtinst: guest: drop 'continue_install' concept
continue_install is intended to facilitate windows XP style 3 stage
installs:
stage 1: initial dos style disk setup, reboot
stage 2: actual full installer, reboot
stage 3: OS is functional, virt-install is done
The code assumed that we needed to keep the cdrom as the primary
boot device for the second stage, so virt-install/virt-manager needed
to hang around through the second stage run, wait until the VM shutdown,
then encode the final XML to boot of the disk.
Windows is and always has been smart enough to handle that case though...
after the initial boot, if we set the hd as the primary boot device
for stage 2, the disk bits that windows already installed will make
use of the cdrom as necessary. So the entire premise of continue_install
is irrelevant. Maybe back when it was added, when xen didn't even have
working ACPI support, this served a purpose, but I'm pretty sure we
can safely drop it nowadays.
2016-06-17 04:13:54 +08:00
|
|
|
if xmlonly not in [False, "1", "2", "all"]:
|
|
|
|
fail(_("Unknown XML step request '%s', must be 1, 2, or all") %
|
|
|
|
xmlonly)
|
|
|
|
|
2015-04-05 05:10:45 +08:00
|
|
|
if xmlonly == "1":
|
2013-03-18 05:06:52 +08:00
|
|
|
return start_xml
|
2015-04-05 05:10:45 +08:00
|
|
|
if xmlonly == "2":
|
virtinst: guest: drop 'continue_install' concept
continue_install is intended to facilitate windows XP style 3 stage
installs:
stage 1: initial dos style disk setup, reboot
stage 2: actual full installer, reboot
stage 3: OS is functional, virt-install is done
The code assumed that we needed to keep the cdrom as the primary
boot device for the second stage, so virt-install/virt-manager needed
to hang around through the second stage run, wait until the VM shutdown,
then encode the final XML to boot of the disk.
Windows is and always has been smart enough to handle that case though...
after the initial boot, if we set the hd as the primary boot device
for stage 2, the disk bits that windows already installed will make
use of the cdrom as necessary. So the entire premise of continue_install
is irrelevant. Maybe back when it was added, when xen didn't even have
working ACPI support, this served a purpose, but I'm pretty sure we
can safely drop it nowadays.
2016-06-17 04:13:54 +08:00
|
|
|
if not final_xml:
|
2013-03-18 05:06:52 +08:00
|
|
|
fail(_("Requested installation does not have XML step 2"))
|
|
|
|
return final_xml
|
|
|
|
|
|
|
|
# "all" case
|
|
|
|
xml = start_xml
|
|
|
|
if final_xml:
|
|
|
|
xml += final_xml
|
|
|
|
return xml
|
|
|
|
|
|
|
|
|
|
|
|
#######################
|
|
|
|
# CLI option handling #
|
|
|
|
#######################
|
|
|
|
|
|
|
|
def parse_args():
|
2013-07-01 03:03:53 +08:00
|
|
|
parser = cli.setupParser(
|
2016-04-08 03:52:07 +08:00
|
|
|
"%(prog)s --name NAME --memory MB STORAGE INSTALL [options]",
|
2014-01-22 22:06:35 +08:00
|
|
|
_("Create a new virtual machine from specified install media."),
|
|
|
|
introspection_epilog=True)
|
2013-03-18 05:06:52 +08:00
|
|
|
cli.add_connect_option(parser)
|
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
geng = parser.add_argument_group(_("General Options"))
|
2014-01-21 07:04:23 +08:00
|
|
|
geng.add_argument("-n", "--name",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Name of the guest instance"))
|
2014-01-25 07:56:59 +08:00
|
|
|
cli.add_memory_option(geng, backcompat=True)
|
2013-03-18 05:06:52 +08:00
|
|
|
cli.vcpu_cli_options(geng)
|
2014-01-25 09:03:30 +08:00
|
|
|
cli.add_metadata_option(geng)
|
|
|
|
geng.add_argument("-u", "--uuid", help=argparse.SUPPRESS)
|
|
|
|
geng.add_argument("--description", help=argparse.SUPPRESS)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
insg = parser.add_argument_group(_("Installation Method Options"))
|
|
|
|
insg.add_argument("-c", dest="cdrom_short", help=argparse.SUPPRESS)
|
2014-01-21 07:04:23 +08:00
|
|
|
insg.add_argument("--cdrom", help=_("CD-ROM installation media"))
|
|
|
|
insg.add_argument("-l", "--location",
|
2018-06-13 01:49:25 +08:00
|
|
|
help=_("Distro install URL, eg. https://host/path. See man "
|
|
|
|
"page for specific distro examples."))
|
2014-01-21 07:04:23 +08:00
|
|
|
insg.add_argument("--pxe", action="store_true",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Boot from the network using the PXE protocol"))
|
2014-01-19 06:01:43 +08:00
|
|
|
insg.add_argument("--import", action="store_true", dest="import_install",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Build guest around an existing disk image"))
|
2014-01-21 07:04:23 +08:00
|
|
|
insg.add_argument("--livecd", action="store_true",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Treat the CD-ROM media as a Live CD"))
|
2016-03-18 10:28:17 +08:00
|
|
|
insg.add_argument("-x", "--extra-args", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Additional arguments to pass to the install kernel "
|
|
|
|
"booted from --location"))
|
2014-01-21 07:04:23 +08:00
|
|
|
insg.add_argument("--initrd-inject", action="append",
|
2013-03-18 05:06:52 +08:00
|
|
|
help=_("Add given file to root of initrd from --location"))
|
2014-09-07 23:57:04 +08:00
|
|
|
|
2014-09-21 08:32:19 +08:00
|
|
|
# Takes a URL and just prints to stdout the detected distro name
|
|
|
|
insg.add_argument("--test-media-detection", help=argparse.SUPPRESS)
|
2018-06-12 22:50:36 +08:00
|
|
|
# Helper for cli testing, fills in standard stub options
|
|
|
|
insg.add_argument("--test-stub-command", action="store_true",
|
|
|
|
help=argparse.SUPPRESS)
|
2014-09-21 08:32:19 +08:00
|
|
|
|
2014-09-07 23:57:04 +08:00
|
|
|
insg.add_argument("--os-type", dest="distro_type", help=argparse.SUPPRESS)
|
|
|
|
insg.add_argument("--os-variant", dest="distro_variant",
|
|
|
|
help=_("The OS variant being installed guests, "
|
|
|
|
"e.g. 'fedora18', 'rhel6', 'winxp', etc."))
|
|
|
|
|
2014-02-11 07:13:42 +08:00
|
|
|
cli.add_boot_options(insg)
|
2014-01-22 04:36:34 +08:00
|
|
|
insg.add_argument("--init", help=argparse.SUPPRESS)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
2014-09-21 07:30:16 +08:00
|
|
|
devg = parser.add_argument_group(_("Device Options"))
|
|
|
|
cli.add_disk_option(devg)
|
|
|
|
cli.add_net_option(devg)
|
|
|
|
cli.add_gfx_option(devg)
|
|
|
|
cli.add_device_options(devg, sound_back_compat=True)
|
|
|
|
|
|
|
|
# Deprecated device options
|
|
|
|
devg.add_argument("-f", "--file", dest="file_paths", action="append",
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-09-21 07:30:16 +08:00
|
|
|
devg.add_argument("-s", "--file-size", type=float,
|
2013-03-18 05:06:52 +08:00
|
|
|
action="append", dest="disksize",
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-09-21 07:30:16 +08:00
|
|
|
devg.add_argument("--nonsparse", action="store_false",
|
2013-03-18 05:06:52 +08:00
|
|
|
default=True, dest="sparse",
|
2014-01-19 06:01:43 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-09-21 07:30:16 +08:00
|
|
|
devg.add_argument("--nodisks", action="store_true", help=argparse.SUPPRESS)
|
|
|
|
devg.add_argument("--nonetworks", action="store_true",
|
2014-09-21 06:56:39 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-09-21 07:30:16 +08:00
|
|
|
devg.add_argument("-b", "--bridge", action="append",
|
2014-09-20 08:31:22 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2014-09-21 07:30:16 +08:00
|
|
|
devg.add_argument("-m", "--mac", action="append", help=argparse.SUPPRESS)
|
|
|
|
devg.add_argument("--vnc", action="store_true", help=argparse.SUPPRESS)
|
|
|
|
devg.add_argument("--vncport", type=int, help=argparse.SUPPRESS)
|
|
|
|
devg.add_argument("--vnclisten", help=argparse.SUPPRESS)
|
|
|
|
devg.add_argument("-k", "--keymap", help=argparse.SUPPRESS)
|
|
|
|
devg.add_argument("--sdl", action="store_true", help=argparse.SUPPRESS)
|
|
|
|
devg.add_argument("--nographics", action="store_true",
|
2014-09-20 08:31:22 +08:00
|
|
|
help=argparse.SUPPRESS)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-09-21 07:30:16 +08:00
|
|
|
|
|
|
|
gxmlg = parser.add_argument_group(_("Guest Configuration Options"))
|
|
|
|
cli.add_guest_xml_options(gxmlg)
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
virg = parser.add_argument_group(_("Virtualization Platform Options"))
|
2018-09-07 07:07:15 +08:00
|
|
|
ostypeg = virg.add_mutually_exclusive_group()
|
|
|
|
ostypeg.add_argument("-v", "--hvm",
|
|
|
|
action="store_const", const="hvm", dest="os_type",
|
|
|
|
help=_("This guest should be a fully virtualized guest"))
|
|
|
|
ostypeg.add_argument("-p", "--paravirt",
|
|
|
|
action="store_const", const="xen", dest="os_type",
|
|
|
|
help=_("This guest should be a paravirtualized guest"))
|
|
|
|
ostypeg.add_argument("--container",
|
|
|
|
action="store_const", const="exe", dest="os_type",
|
|
|
|
help=_("This guest should be a container guest"))
|
|
|
|
virg.add_argument("--virt-type",
|
|
|
|
help=_("Hypervisor name to use (kvm, qemu, xen, ...)"))
|
|
|
|
virg.add_argument("--arch", help=_("The CPU architecture to simulate"))
|
|
|
|
virg.add_argument("--machine", help=_("The machine type to emulate"))
|
|
|
|
virg.add_argument("--accelerate", action="store_true",
|
|
|
|
help=argparse.SUPPRESS)
|
2014-09-20 08:31:22 +08:00
|
|
|
virg.add_argument("--noapic", action="store_true",
|
|
|
|
default=False, help=argparse.SUPPRESS)
|
|
|
|
virg.add_argument("--noacpi", action="store_true",
|
|
|
|
default=False, help=argparse.SUPPRESS)
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
misc = parser.add_argument_group(_("Miscellaneous Options"))
|
|
|
|
misc.add_argument("--autostart", action="store_true", dest="autostart",
|
2013-03-18 05:06:52 +08:00
|
|
|
default=False,
|
|
|
|
help=_("Have domain autostart on host boot up."))
|
2016-06-01 21:32:56 +08:00
|
|
|
misc.add_argument("--transient", action="store_true", dest="transient",
|
|
|
|
default=False,
|
|
|
|
help=_("Create a transient domain."))
|
2014-01-19 06:01:43 +08:00
|
|
|
misc.add_argument("--wait", type=int, dest="wait",
|
2013-09-28 23:27:26 +08:00
|
|
|
help=_("Minutes to wait for install to complete."))
|
|
|
|
|
|
|
|
cli.add_misc_options(misc, prompt=True, printxml=True, printstep=True,
|
2014-02-06 08:09:26 +08:00
|
|
|
noreboot=True, dryrun=True, noautoconsole=True)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2014-01-19 06:01:43 +08:00
|
|
|
return parser.parse_args()
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
|
|
|
|
###################
|
|
|
|
# main() handling #
|
|
|
|
###################
|
|
|
|
|
2018-06-12 22:50:36 +08:00
|
|
|
def set_test_stub_options(options):
|
|
|
|
# Set some basic options that will let virt-install succeed. Helps
|
|
|
|
# save boiler plate typing when testing new command line additions
|
|
|
|
if not options.test_stub_command:
|
|
|
|
return
|
|
|
|
|
|
|
|
if not options.connect:
|
|
|
|
options.connect = "test:///default"
|
|
|
|
if not options.name:
|
|
|
|
options.name = "test-stub-command"
|
|
|
|
if not options.memory:
|
|
|
|
options.memory = "256"
|
|
|
|
if not options.disk:
|
|
|
|
options.disk = "none"
|
|
|
|
if not install_specified(options):
|
|
|
|
options.import_install = True
|
|
|
|
if not options.graphics:
|
|
|
|
options.graphics = "none"
|
|
|
|
if not options.distro_variant:
|
|
|
|
options.distro_variant = "fedora27"
|
|
|
|
|
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
def main(conn=None):
|
|
|
|
cli.earlyLogging()
|
2014-01-19 06:01:43 +08:00
|
|
|
options = parse_args()
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
# Default setup options
|
2018-06-06 02:54:34 +08:00
|
|
|
convert_old_printxml(options)
|
2015-04-05 05:10:45 +08:00
|
|
|
options.quiet = (options.xmlonly or
|
2014-09-21 08:32:19 +08:00
|
|
|
options.test_media_detection or options.quiet)
|
2013-03-18 05:06:52 +08:00
|
|
|
cli.setupLogging("virt-install", options.debug, options.quiet)
|
|
|
|
|
2018-06-06 02:54:34 +08:00
|
|
|
if cli.check_option_introspection(options):
|
|
|
|
return 0
|
2013-03-18 05:06:52 +08:00
|
|
|
|
2018-06-06 02:54:34 +08:00
|
|
|
check_cdrom_option_error(options)
|
2015-04-12 07:25:46 +08:00
|
|
|
cli.convert_old_force(options)
|
|
|
|
cli.parse_check(options.check)
|
2013-03-18 05:06:52 +08:00
|
|
|
cli.set_prompt(options.prompt)
|
2018-06-06 02:54:34 +08:00
|
|
|
convert_old_memory(options)
|
|
|
|
convert_old_sound(options)
|
|
|
|
convert_old_networks(options)
|
|
|
|
convert_old_graphics(options)
|
|
|
|
convert_old_disks(options)
|
|
|
|
convert_old_features(options)
|
|
|
|
convert_old_cpuset(options)
|
|
|
|
convert_old_init(options)
|
2018-06-12 22:50:36 +08:00
|
|
|
set_test_stub_options(options)
|
2018-06-06 02:54:34 +08:00
|
|
|
convert_old_os_options(options)
|
2014-01-22 22:06:35 +08:00
|
|
|
|
2013-03-18 05:06:52 +08:00
|
|
|
if conn is None:
|
|
|
|
conn = cli.getConnection(options.connect)
|
|
|
|
|
2014-09-21 08:32:19 +08:00
|
|
|
if options.test_media_detection:
|
2018-09-07 08:28:05 +08:00
|
|
|
do_test_media_detection(conn, options)
|
2014-09-21 08:32:19 +08:00
|
|
|
return 0
|
|
|
|
|
2018-09-04 03:21:11 +08:00
|
|
|
guest, installer = build_guest_instance(conn, options)
|
2015-04-05 05:10:45 +08:00
|
|
|
if options.xmlonly or options.dry:
|
2018-09-04 03:21:11 +08:00
|
|
|
xml = xml_to_print(guest, installer, options.xmlonly, options.dry)
|
2013-03-18 05:06:52 +08:00
|
|
|
if xml:
|
|
|
|
print_stdout(xml, do_force=True)
|
|
|
|
else:
|
2018-09-04 03:21:11 +08:00
|
|
|
start_install(guest, installer, options)
|
2013-03-18 05:06:52 +08:00
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
try:
|
|
|
|
sys.exit(main())
|
2017-05-06 00:47:21 +08:00
|
|
|
except SystemExit as sys_e:
|
2013-03-18 05:06:52 +08:00
|
|
|
sys.exit(sys_e.code)
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
logging.debug("", exc_info=True)
|
|
|
|
print_stderr(_("Installation aborted at user request"))
|
2017-05-06 00:47:21 +08:00
|
|
|
except Exception as main_e:
|
2013-03-18 05:06:52 +08:00
|
|
|
fail(main_e)
|