Displaying 2 results from an estimated 2 matches for "pvwh".
Did you mean:
pvh
2009 Jul 21
2
[PATCH node-image] Adds a preserve option for autotest VMs.
...DNSMASQ_PID=0
+ debug "preserve_vm=${preserve_vm}"
}
# cleans up any loose ends
@@ -691,12 +698,14 @@ debugging=false
isofile="${PWD}/ovirt-node-image.iso"
show_viewer=false
vm_prefix="$$"
+preserve_vm=false
-while getopts di:n:vwh c; do
+while getopts di:n:pvwh c; do
case $c in
d) debugging=true;;
i) isofile=($OPTARG);;
n) tests=($OPTARG);;
+ p) preserve_vm=true;;
v) set -v;;
w) show_viewer=true;;
h) usage; exit 0;;
--
1.6.2.5
2009 Dec 15
1
[PATCH] The autotest timeout is now a command line configurable option.
...meout_period}'
log_file stateful-pxe.log
send_log "Restarted node, booting from hard disk.\n"
@@ -704,13 +705,15 @@ isofile="${PWD}/ovirt-node-image.iso"
show_viewer=false
vm_prefix="$$"
preserve_vm=false
+timeout_period="120"
-while getopts di:n:pvwh c; do
+while getopts di:n:pt:vwh c; do
case $c in
d) debugging=true;;
i) isofile=($OPTARG);;
n) tests=($OPTARG);;
- p) preserve_vm=true;;
+ p) preserve_vm=true;;
+ t) timeout_period=($OPTARG);;
v) set -v;;
w) show_viewer=true;;...