search for: rhsrvany

Displaying 20 results from an estimated 70 matches for "rhsrvany".

2013 Nov 18
7
RHSrvAny: Fix failure on Windows 2003
The newly rebuilt RHSrvAny worked on Windows XP, Windows 2003 R2, and Windows Vista+, but segfaulted on Windows 2003. After much investigation, the issue seems to have been with inconsistent use of Unicode. This series fixes compilation on Microsoft Visual C++ 2010 (the most recent version which runs on Windows 2003), fixes...
2013 Aug 29
5
[PATCH 1/6] Rationalise whitespace to 4 space indentation with no trailing spaces
RHSrvAny.c was using a mixture of 4 space indentation, and tabs with a width of 4. This commit rationalises the whitespace to use only 4 space indentation, and removes trailing whitespace. --- RHSrvAny/RHSrvAny.c | 537 ++++++++++++++++++++++++++-------------------------- RHSrvAny/RHSrvAny.h | 1 - RHSrv...
2013 Aug 21
2
[PATCH 1/3] Rationalise whitespace to 4 space indentation with no trailing spaces
RHSrvAny.c was using a mixture of 4 space indentation, and tabs with a width of 4. This commit rationalises the whitespace to use only 4 space indentation, and removes trailing whitespace. --- RHSrvAny/RHSrvAny.c | 537 ++++++++++++++++++++++++++-------------------------- RHSrvAny/RHSrvAny.h | 1 - RHSrv...
2015 Oct 05
0
[PATCH 1/6] tests: use fake rhsrvany.exe
The tests that depend on rhsrvany.exe being available, actually don't need it to be the real one: all they want is the file being present. So, instead of skipping the tests if the real rhsrvany.exe is not found, store a fake one in the repository, and point $VIRT_TOOLS_DATA_DIR at its location. Signed-off-by: Roman Kagan <...
2016 May 12
0
[PATCH 05/11] customize: add support for pvvxsvc
SUSE VMDP comes with a replacement for rhsrvany.exe named pvvxsvc.exe. Check for either one of them instead of only rhsrvany. --- builder/virt-builder.pod | 11 +++++++++-- customize/firstboot.ml | 38 +++++++++++++++++++++++--------------- customize/virt-customize.pod | 6 ++++++ sysprep/virt-sysprep.pod | 6 ++++++ v2v/virt-v2...
2016 May 18
0
[PATCH v2 05/11] customize: add support for pvvxsvc
SUSE VMDP comes with a replacement for rhsrvany.exe named pvvxsvc.exe. Check for either one of them instead of only rhsrvany. --- builder/virt-builder.pod | 11 +++++++++-- customize/firstboot.ml | 36 +++++++++++++++++++++--------------- customize/virt-customize.pod | 6 ++++++ sysprep/virt-sysprep.pod | 6 ++++++ v2v/virt-v2v....
2016 Apr 05
0
[PATCH 3/7] customize: add support for pvvxsvc
SUSE VMDP comes with a replacement for rhsrvany.exe named pvvxsvc.exe. Check for either one of them instead of only rhsrvany. --- builder/virt-builder.pod | 13 +++- customize/firstboot.ml | 169 +++++++++++++++++++++++-------------------- customize/virt-customize.pod | 6 ++ sysprep/virt-sysprep.pod | 6 ++ v2v/virt-v2v.pod...
2015 Oct 05
2
Re: [PATCH 1/6] tests: use fake rhsrvany.exe
...ted to the test scripts unless you change v2v/Makefile.am: TESTS_ENVIRONMENT to include it, something like this: -TESTS_ENVIRONMENT = $(top_builddir)/run --test +TESTS_ENVIRONMENT = abs_top_builddir="$(abs_top_builddir)" $(top_builddir)/run --test > diff --git a/tests/fake-virt-tools/rhsrvany.exe b/tests/fake-virt-tools/rhsrvany.exe > new file mode 100644 > index 0000000..b474349 > --- /dev/null > +++ b/tests/fake-virt-tools/rhsrvany.exe > @@ -0,0 +1 @@ > +This is a fake rhsrvany.exe, used for testing only > diff --git a/tests/regressions/rhbz1232192.sh b/tests/regr...
2015 Oct 05
0
Re: [PATCH 1/6] tests: use fake rhsrvany.exe
...uot; $(top_builddir)/run --test This wasn't my invention: somehow *all* 15 tests under v2v which used $abs_top_builddir or $abs_builddir obtained them exactly like I did in the patch. Want me to fix them all? Will probably be another patch, then. > > diff --git a/tests/fake-virt-tools/rhsrvany.exe b/tests/fake-virt-tools/rhsrvany.exe > > new file mode 100644 > > index 0000000..b474349 > > --- /dev/null > > +++ b/tests/fake-virt-tools/rhsrvany.exe > > @@ -0,0 +1 @@ > > +This is a fake rhsrvany.exe, used for testing only > > diff --git a/tests/regr...
2015 Oct 05
18
[PATCH 0/6] v2v: assorted improvements to tests for windows
...d files and directories upon conversion - adds a test for the case when virtio windows drivers are provied on an iso image - fixes a bogus failure case in a utility function which triggered on the newly added fake virio windows driver directory. Roman Kagan (6): tests: use fake rhsrvany.exe tests: add fake rhev-apt.exe v2v:test:win: actually check the eventual layout tests: use fake virtio-win drivers v2v:utils: ignore files w/o extension add test for v2v with virtio-win drivers on iso Makefile.am | 1 + configure.ac...
2016 May 18
21
[PATCH v2 00/11] Getting it work with SLES / openSUSE
Hi all, v2 includes all comments from Pino and Richard. I also removed the mkdir /run/lvm in the init since it only failed in one case and couldn't reproduce it anymore. Cédric Bosdonnat (11): v2v: also search for windows virtio drivers in symlinks Update packagelist for SLES and openSUSE customize: fix windows firstboot script customize: change windows firstboot path customize:
2016 Apr 05
1
Re: [PATCH 3/7] customize: add support for pvvxsvc
...: > The output of the first boot scripts is available in the guest as > -F<C:\Program Files\Red Hat\Firstboot\log.txt>. > +F<C:\Program Files\Guestfs\Firstboot\log.txt>. Changing this path is fine, but let's split it into a separate patch. > + let services = ["rhsrvany.exe"; "pvvxsvc.exe"] in > + let srvany = ( > + try > + List.find ( > + fun service -> ( > + try > + let chan = open_in (virt_tools_data_dir // service) in > + close_in chan; > + true...
2015 Oct 05
2
Re: [PATCH 1/6] tests: use fake rhsrvany.exe
...r or $abs_builddir obtained them exactly like I did in > the patch. Want me to fix them all? Will probably be another patch, > then. Ah I see - in that case you can leave it as you had it before, or change all of the tests, as you see fit. > > > diff --git a/tests/fake-virt-tools/rhsrvany.exe b/tests/fake-virt-tools/rhsrvany.exe > > > new file mode 100644 > > > index 0000000..b474349 > > > --- /dev/null > > > +++ b/tests/fake-virt-tools/rhsrvany.exe > > > @@ -0,0 +1 @@ > > > +This is a fake rhsrvany.exe, used for testing only &gt...
2015 Oct 21
1
[PATCH] tests: use fake-virt-tools also in tests outside v2v
...-virt-p2v.sh b/p2v/test-virt-p2v.sh index 8c3731c..540d2fd 100755 --- a/p2v/test-virt-p2v.sh +++ b/p2v/test-virt-p2v.sh @@ -44,11 +44,7 @@ if ! test -f $f2 || ! test -s $f2; then exit 77 fi -virt_tools_data_dir=${VIRT_TOOLS_DATA_DIR:-/usr/share/virt-tools} -if ! test -r $virt_tools_data_dir/rhsrvany.exe; then - echo "$0: test skipped because rhsrvany.exe is not installed" - exit 77 -fi +export VIRT_TOOLS_DATA_DIR="../v2v/fake-virt-tools" d=test-virt-p2v.d rm -rf $d diff --git a/tests/regressions/rhbz1232192.sh b/tests/regressions/rhbz1232192.sh index 5b4b31e..8cd6...
2016 May 12
24
[PATCH 00/11] Getting it work with SLES / openSUSE
Hi there! I know it's been a while since I posted my first version of some patches. But here I have rebased them on top of Roman's work and added a few other ones. Cédric Bosdonnat (11): v2v: also search for windows virtio drivers in symlinks Update packagelist for SLES customize: fix windows firstboot script customize: change windows firstboot path customize: add support for
2010 May 13
1
Emailing: 0002-use-single-registry-change-for-all-supported-windows.patch
if it works thank god for notepad2 (If it's not then be patience, I am just a windows user). Amos. -------------- next part -------------- A non-text attachment was scrubbed... Name: 0002-use-single-registry-change-for-all-supported-windows.patch Type: application/octet-stream Size: 10635 bytes Desc: not available URL:
2010 May 16
1
FW: Emailing: 0002-use-single-registry-change-for-all-supported-windows.patch
...> strings. > > See: > > http://en.wikibooks.org/wiki/Perl_Programming/Strings#Single_Quoted_St > r > ings Fixed. > > As Matt noted on IRC it would be much better to change this to use a > heredoc. > > > -[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\RHSrvAny] > > +[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\services\rhev-apt] > > This depends on some change (or not) to RHSrvAny. I made this change > to the service name: > > http://github.com/rwmjones/rhsrvany/commit/2de2f11dc0c97aab0f8778aa1ee > 2 > dc35f4034a69 > > A...
2015 Oct 06
0
Re: [PATCH 1/6] tests: use fake rhsrvany.exe
...'/home/rkagan/work/git/libguestfs' Makefile:2129: recipe for target 'dist' failed make: *** [dist] Error 2 Any suggestion on where to look? > > > TBH I'd prefer if the fake-virt-tools directory was a subdir of v2v/ > > > so you can just add fake-virt-tools/rhsrvany.exe to EXTRA_DIST that is > > > already defined in v2v/Makefile.am. > > > > rhsrvany.exe is used outside v2v, too (customize, sysprep, etc.). So I > > thought the fake stuff would be generally useful, not limited to v2v. > > > > Moreover the tests in p2v alr...
2016 May 23
0
Re: [PATCH v2 05/11] customize: add support for pvvxsvc
On Fri, 2016-05-20 at 12:42 +0300, Roman Kagan wrote: > On Wed, May 18, 2016 at 02:00:53PM +0200, Cédric Bosdonnat wrote: > > SUSE VMDP comes with a replacement for rhsrvany.exe named > > pvvxsvc.exe. > > Check for either one of them instead of only rhsrvany. > > Does pvvxsvc do anything that rhsrvany doesn't? I don't know if rhsrvany does it too, but that tool is also used as a service to monitor the memory stats in the guest. > Wouldn&...
2019 Nov 21
0
[PATCH 1/2] firstboot: use absolute path to rhsrvany
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- mlcustomize/firstboot.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlcustomize/firstboot.ml b/mlcustomize/firstboot.ml index a8f4ef7..c3ebfd9 100644 --- a/mlcustomize/firstboot.ml +++ b/mlcustomize/firstboot.ml @@ -307,7 +307,7 @@ for %%%%f in (\"%%scripts%%\"\\*.bat) do ( ) echo uninstalling