summaryrefslogtreecommitdiff
path: root/virt-install
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2019-06-16 23:12:24 -0400
committerCole Robinson <crobinso@redhat.com>2019-06-17 00:12:32 -0400
commit16362671e95a00de980abf151d3b17a59c0d2b74 (patch)
tree2474884eb1afa079da059b0d1b46359d630da3b4 /virt-install
parent230545bdb3ef7ece8656ccddd8c14075d575c7c6 (diff)
downloadvirt-manager-16362671e95a00de980abf151d3b17a59c0d2b74.tar.gz
virt-install: Add --install no_install=yes|no
This just formalizes the behavior of things like --import and --livecd
Diffstat (limited to 'virt-install')
-rwxr-xr-xvirt-install2
1 files changed, 1 insertions, 1 deletions
diff --git a/virt-install b/virt-install
index 6084a459..478052e4 100755
--- a/virt-install
+++ b/virt-install
@@ -398,13 +398,13 @@ def build_installer(options, guest, installdata):
install_initrd = installdata.initrd
install_kernel_args = installdata.kernel_args
install_os = installdata.os
+ no_install = installdata.no_install
if installdata.kernel_args:
if installdata.kernel_args_overwrite:
install_kernel_args = installdata.kernel_args
else:
extra_args = [installdata.kernel_args]
- no_install = None
if install_os:
location = get_location_for_os(guest, install_os)
elif options.location: