search for: send_log

Displaying 3 results from an estimated 3 matches for "send_log".

Did you mean: end_log
2009 May 19
1
[PATCH node-image] Fixing the autotest script.
...t=no" "${workdir}" expect -c ' set timeout 120 -log_file -noappend stateless-pxe-nohd.log + +log_file -noappend stateless-pxe.log spawn sudo virsh console '"${nodename}"' @@ -491,20 +490,18 @@ expect { -exact "Starting ovirt-early:" { send_log "\n\nMarker 2\n\n"; exp_continue } -exact "Starting ovirt:" { send_log "\n\nMarker 3\n\n"; exp_continue } -exact "Starting ovirt-post:" { send_log "\n\nMarker 4\n\n"; exp_continue } - -exact "login:" { send_log &qu...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...odename}" "standalone firstboot=no" "${workdir}" + + expect -c ' +set timeout '${timeout_period}' + +log_file -noappend stateless-pxe.log + +spawn sudo virsh console '"${nodename}"' + +expect { + -exact "Linux version" { send_log "\n\nMarker 1\n\n"; exp_continue } + -exact "Starting ovirt-early:" { send_log "\n\nMarker 2\n\n"; exp_continue } + -exact "Starting ovirt:" { send_log "\n\nMarker 3\n\n"; exp_continue } + -exact "Starting ovirt-post:" { se...
2009 Dec 15
1
[PATCH] The autotest timeout is now a command line configurable option.
...}' log_file -noappend stateful-pxe.log spawn sudo virsh console '"${nodename}"' @@ -608,7 +609,7 @@ exit 3' boot_from_hd "${nodename}" expect -c ' -set timeout 120 +set timeout '${timeout_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...