Displaying 5 results from an estimated 5 matches for "qixiang".
2010 Jun 09
1
[PATCH] RHEV: Fix generation of OVF file
From: Qixiang Wan <qwan at redhat.com>
Commit 0973765674abd773ad04a99ddfdff8e81693e1ff introduced a regression which
caused the OVF file not to be generated when outputting to RHEV.
Fixes RHBZ#602067
---
lib/Sys/VirtV2V/Target/RHEV.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --g...
2012 Mar 08
1
[PATCH] Fix the default value of "pgroup".
As the document said, the default value of "pgroup" should be false.
Signed-off-by: Qixiang Wan <qwan at redhat.com>
---
fish/fish.c | 2 +-
src/guestfs.c | 3 +++
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/fish/fish.c b/fish/fish.c
index 575fe99..fbacbb9 100644
--- a/fish/fish.c
+++ b/fish/fish.c
@@ -406,7 +406,7 @@ main (int argc, char *argv[])
si...
2010 Mar 31
1
How can I change exit on error behaviour in remote control mode ?
Hi, all:
In remote control mode of guestfish, the server will normally exit if there is an error in a command.
guestfish man page said if we prefix a command with a - character, then that command will not cause guestfish to exit,
but this doesn't work in remote control mode, seems the prefixal '-' in sub-command won't be handled by guestfish.
--------------
$ eval `guestfish
2010 Mar 31
1
The exit code makes user confused while using '-' prefixed subcommands
guestfish returns 0 if the commands completed without error, or 1 if there was an error.
But the rule break when we use '-' prefix subcommands:
------------------------------------
$ guestfish <<\EOF
> blabla
> EOF
blabla: unknown command
$ echo $?
1
$ guestfish <<\EOF
-blabla
EOF
blabla: unknown command
$ echo $?
0
------------------------------------
I think it should
2010 Mar 29
1
appliance/make.sh won't update when re-configure with new mirror (or updates) url
Hi, all:
When I re-configure in the source directory, and then make the build. It will use the previous urls of mirror and updates which I specified via --with-mirror and --with-updates.
for example: the previous command line I used is:
1. $ ./autogen.sh --with-mirror='http://wrongurl/fedora/os/' --with-updates='http://wrongurl/fedora/updates' --with-repo='wrong_repo'
2. $