75833be3e2
resolves: rhbz#2059287, rhbz#1658126, rhbz#1788823, rhbz#1854275
75 lines
2.8 KiB
Diff
75 lines
2.8 KiB
Diff
From 3fe42109385e17597f0a91fa9a7a19320a9a2588 Mon Sep 17 00:00:00 2001
|
||
From: "Richard W.M. Jones" <rjones@redhat.com>
|
||
Date: Thu, 2 Dec 2021 11:56:05 +0000
|
||
Subject: [PATCH] RHEL: Remove the --in-place option
|
||
|
||
This disables the virt-v2v --in-place option which we do not
|
||
wish to support in RHEL.
|
||
---
|
||
docs/virt-v2v.pod | 8 --------
|
||
v2v/v2v.ml | 8 --------
|
||
2 files changed, 16 deletions(-)
|
||
|
||
diff --git a/docs/virt-v2v.pod b/docs/virt-v2v.pod
|
||
index 73a43b76..53c9afae 100644
|
||
--- a/docs/virt-v2v.pod
|
||
+++ b/docs/virt-v2v.pod
|
||
@@ -21,9 +21,6 @@ There is also a companion front-end called L<virt-p2v(1)> which comes
|
||
as an ISO, CD or PXE image that can be booted on physical machines to
|
||
virtualize those machines (physical to virtual, or p2v).
|
||
|
||
-For in-place conversion, there is a separate tool called
|
||
-L<virt-v2v-in-place(1)>.
|
||
-
|
||
=head2 Input and Output
|
||
|
||
You normally run virt-v2v with several I<-i*> options controlling the
|
||
@@ -36,10 +33,6 @@ The input and output sides of virt-v2v are separate and unrelated.
|
||
Virt-v2v can read from any input and write to any output. Therefore
|
||
these sides of virt-v2v are documented separately in this manual.
|
||
|
||
-Virt-v2v normally copies from the input to the output, called "copying
|
||
-mode". In this case the source guest is always left unchanged.
|
||
-In-place conversions may be done using L<virt-v2v-in-place(1)>.
|
||
-
|
||
=head2 Other virt-v2v topics
|
||
|
||
L<virt-v2v-support(1)> — Supported hypervisors, virtualization
|
||
@@ -1586,7 +1579,6 @@ L<https://rwmj.wordpress.com/2015/09/18/importing-kvm-guests-to-ovirt-or-rhev/#c
|
||
=head1 SEE ALSO
|
||
|
||
L<virt-p2v(1)>,
|
||
-L<virt-v2v-in-place(1)>,
|
||
L<virt-customize(1)>,
|
||
L<virt-df(1)>,
|
||
L<virt-filesystems(1)>,
|
||
diff --git a/v2v/v2v.ml b/v2v/v2v.ml
|
||
index 1a04b26b..08d5a34c 100644
|
||
--- a/v2v/v2v.ml
|
||
+++ b/v2v/v2v.ml
|
||
@@ -226,12 +226,6 @@ let rec main () =
|
||
warning (f_"the --vmtype option has been removed and now does nothing")
|
||
in
|
||
|
||
- (* Options that are errors. *)
|
||
- let in_place_error _ =
|
||
- error (f_"The --in-place option has been replaced by the \
|
||
- ‘virt-v2v-in-place’ program")
|
||
- in
|
||
-
|
||
let argspec = [
|
||
[ L"bandwidth" ], Getopt.String ("bps", set_string_option_once "--bandwidth" bandwidth),
|
||
s_"Set bandwidth to bits per sec";
|
||
@@ -253,8 +247,6 @@ let rec main () =
|
||
s_"Use password from file to connect to input hypervisor";
|
||
[ M"it" ], Getopt.String ("transport", set_string_option_once "-it" input_transport),
|
||
s_"Input transport";
|
||
- [ L"in-place" ], Getopt.Unit in_place_error,
|
||
- s_"Use virt-v2v-in-place instead";
|
||
[ L"mac" ], Getopt.String ("mac:network|bridge|ip:out", add_mac),
|
||
s_"Map NIC to network or bridge or assign static IP";
|
||
[ S 'n'; L"network" ], Getopt.String ("in:out", add_network),
|
||
--
|
||
2.31.1
|
||
|