similar to: [PATCH 0/4] virt-p2v support for openSUSE / SLES

Displaying 20 results from an estimated 11000 matches similar to: "[PATCH 0/4] virt-p2v support for openSUSE / SLES"

2016 Jun 22
5
[PATCH v3 0/4] virt-p2v support for openSUSE / SLES
Diff to v2: * remove leftover variable declaration in gui.c Cédric Bosdonnat (4): p2v: use yast2 lan on SUSE distros rather than NM p2v: fix dependencies for SLES / openSUSE p2v: add virt-p2v-make-kiwi to generate kiwi config p2v: add -x option to nm-online .gitignore | 3 + configure.ac | 2 + p2v/Makefile.am | 31 +++++-
2016 Jun 22
4
[PATCH v2 0/4] virt-p2v support for openSUSE / SLES
Diff to v1: * Use access rather than stat in gui.c * Remove now uneeded and missplaced include for stat.h Cédric Bosdonnat (4): p2v: use yast2 lan on SUSE distros rather than NM p2v: fix dependencies for SLES / openSUSE p2v: add virt-p2v-make-kiwi to generate kiwi config p2v: add -x option to nm-online .gitignore | 3 + configure.ac | 2 +
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is time to remove it from libguestfs. [1] https://github.com/libguestfs/virt-p2v [2] http://download.libguestfs.org/virt-p2v/ Pino Toscano (2): Remove virt-p2v Remove remaining virt-p2v bits .gitignore | 4 - Makefile.am | 7 +- bash/Makefile.am
2019 Sep 25
2
[p2v PATCH] Document the root password for the disk images.
Mention what is the password of the root user on the disk images created by virt-p2v-make-disk, virt-p2v-make-kickstart, and virt-p2v-make-kiwi, so users know how to login in the live p2v system. --- virt-p2v-make-disk.pod | 2 ++ virt-p2v-make-kickstart.pod | 2 ++ virt-p2v-make-kiwi.pod | 2 ++ 3 files changed, 6 insertions(+) diff --git a/virt-p2v-make-disk.pod
2016 Oct 10
0
[PATCH] p2v: Compress virt-p2v binary and store it in $libdir/virt-p2v (RHBZ#1382275).
Currently 'make install' installs the virt-p2v binary in /usr/libexec/virt-p2v on the host. It is never supposed to be run from there, even by another program, so use of /usr/libexec is incorrect. It is only supposed to be copied into USB keys / ISOs / etc created by virt-p2v-make-* scripts. The other problem with shipping a "naked" binary on the host is that packages built
2019 Sep 25
1
Re: [p2v PATCH] Document the root password for the disk images.
On 9/25/19 10:40 AM, Richard W.M. Jones wrote: > On Wed, Sep 25, 2019 at 03:16:18PM +0200, Pino Toscano wrote: >> Mention what is the password of the root user on the disk images created >> by virt-p2v-make-disk, virt-p2v-make-kickstart, and virt-p2v-make-kiwi, >> so users know how to login in the live p2v system. >> --- >> virt-p2v-make-disk.pod | 2 ++
2016 Jun 23
2
[PATCH] p2v: kiwi: make sure launch-virt-p2v is executable
virt-p2v-make-kiwi now forces the launch-virt-p2v mode to 0755 to ensure the executable bit it set for user. --- p2v/virt-p2v-make-kiwi.in | 1 + 1 file changed, 1 insertion(+) diff --git a/p2v/virt-p2v-make-kiwi.in b/p2v/virt-p2v-make-kiwi.in index e493bd4..3506e9b 100644 --- a/p2v/virt-p2v-make-kiwi.in +++ b/p2v/virt-p2v-make-kiwi.in @@ -190,6 +190,7 @@ cp $datadir/issue $output/root/etc/issue
2016 Jun 22
1
Re: [PATCH 1/4] p2v: use yast2 lan on SUSE distros rather than NM
On Wed, Jun 22, 2016 at 11:45:32AM +0200, Cédric Bosdonnat wrote: > NetworkManager isn't provided on SLES. As yast2 lan is available on all > openSUSE / SLE distro, use it instead. > --- > p2v/gui.c | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/p2v/gui.c b/p2v/gui.c > index e720002..b50cadf 100644 > --- a/p2v/gui.c > +++
2019 Jul 01
8
[PATCH 0/6] p2v: start making it independent
As preliminary steps in splitting virt-p2v to an own repository, start making p2v more independent within libguestfs. This is accomplished by the following changes: - generate the p2v kernel config sources & docs at build time using a Perl script, rather than the generator (so no need for OCaml when building from git, and no generated sources in dist tarballs) - create two local test
2019 Mar 30
2
Re: few things I found about virt-p2v
> > > > I did, and I'm enclosing gzipped copy of the file. Line 4197 clearly > shows > > it got the correct parameter: > > Initializing the target -o libvirt -os NAS-10G > > Ah I see. This is a limitation: > > > https://github.com/libguestfs/libguestfs/blob/f79129b8dc92470e3a5597daf53c84038bd6859e/v2v/output_libvirt.ml#L107 > > I see. This
2019 Jul 11
5
[p2v PATCH 0/4] More imports and fixes
See individual patches for details. Pino Toscano (4): Add valgrind suppression file podwrapper: the tools here start with p2v Import some internal documentation podwrapper: adapt footer to p2v .gitignore | 6 + Makefile.am | 4 +- configure.ac | 1 + docs/Makefile.am | 65 ++++++++ docs/p2v-building.pod | 259
2019 Jul 03
7
[PATCH 0/6] p2v: make it more independent (part #2)
As preliminary steps in splitting virt-p2v to an own repository, continue making p2v more independent within libguestfs. This is accomplished by the following changes: - have only the authors in the about dialog, and read them from a local AUTHORS file - few more cleanups This is still not complete, although I believe most of the work needed is done, and it still makes p2v usable within
2016 Aug 25
1
Re: [PATCH 5/5] bash completion: Add missing bash completion scripts (RHBZ#1367738).
On Thursday, 25 August 2016 13:15:29 CEST Richard W.M. Jones wrote: > Add new scripts for: > > - guestunmount > - virt-copy-in > - virt-copy-out > - virt-customize > - virt-dib > - virt-diff > - virt-get-kernel > - virt-p2v-make-disk > - virt-p2v-make-kickstart > - virt-p2v-make-kiwi > - virt-tar-in > - virt-tar-out > > Also combine the separate
2019 Sep 18
1
[p2v PATCH v2] Use URL to point to GNU licenses
Adjust almost all the license headers to point to the GNU website instead of the FSF postal address. 3rd party code copies are unchanged. Spotted by Rpmlint. --- v1 is: https://www.redhat.com/archives/libguestfs/2019-September/msg00079.html Makefile.am | 3 +-- autogen.sh | 3 +-- bash/Makefile.am | 3 +--
2019 Jul 09
7
[PATCH 0/5] Split virt-p2v in own repository
Hi, as it was already discussed on this list, here it is my attempt in splitting virt-p2v in an own repository. Sadly there are things that must be copied from libguestfs, as it cannot be avoided. The approach taken was to run a script (will send separately) to just get the "p2v" subdirectory with its history as own repository, and then add in few followup commits all the bits needed
2015 Aug 25
4
[PATCH 0/4] Various p2v fixes and features
A mixed bag, but all the patches make sense together! Patch 1: Fix a bug that Tingting found: https://bugzilla.redhat.com/show_bug.cgi?id=1256222 Patch 2: Revert a patch that makes no sense now that we've added virt-v2v into base RHEL. This is just included because it's a cleanup needed before applying patch 3. Patch 3: Add the ability to use SSH identities (private keys) for virt-p2v
2019 Sep 25
0
Re: [p2v PATCH] Document the root password for the disk images.
On Wed, Sep 25, 2019 at 03:16:18PM +0200, Pino Toscano wrote: > Mention what is the password of the root user on the disk images created > by virt-p2v-make-disk, virt-p2v-make-kickstart, and virt-p2v-make-kiwi, > so users know how to login in the live p2v system. > --- > virt-p2v-make-disk.pod | 2 ++ > virt-p2v-make-kickstart.pod | 2 ++ > virt-p2v-make-kiwi.pod |
2016 Jun 23
0
Re: [PATCH] p2v: kiwi: make sure launch-virt-p2v is executable
On Thu, Jun 23, 2016 at 10:18:02AM +0200, Cédric Bosdonnat wrote: > virt-p2v-make-kiwi now forces the launch-virt-p2v mode to 0755 to > ensure the executable bit it set for user. > --- > p2v/virt-p2v-make-kiwi.in | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/p2v/virt-p2v-make-kiwi.in b/p2v/virt-p2v-make-kiwi.in > index e493bd4..3506e9b 100644 > ---
2017 Mar 31
6
[PATCH 0/3] Fix some quoting issues.
Fix some quoting issues by introducing Unicode quotes. Note this intentionally only affects end-user messages and documentation. Rich.
2015 Aug 27
5
[PATCH v2 0/4] p2v: Wait for network to come online before testing connection
Fixes https://bugzilla.redhat.com/1256222