diff mbox

[OSSTEST,08/15] sg-run-job: examination: Run host install in prep

Message ID 1498054447-11281-9-git-send-email-ian.jackson@eu.citrix.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ian Jackson June 21, 2017, 2:14 p.m. UTC
We want to run this in prep, so that we can start the syslogd after
this.

Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
---
 sg-run-job | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
diff mbox

Patch

diff --git a/sg-run-job b/sg-run-job
index dc5fdc2..ea3ea41 100755
--- a/sg-run-job
+++ b/sg-run-job
@@ -622,8 +622,10 @@  if {[file exists sg-run-job-adhoc]} {
 
 #---------- host examination recipes ----------
 
-proc examine-host-install-debian {} {
+proc examine-host-prep {} {
     run-ts broken  =            ts-hosts-allocate     + host
+}
+proc examine-host-install-debian {} {
     run-ts broken  host-install ts-host-install-twice + host
 }
 proc examine-host-install-xen {} {
@@ -647,9 +649,11 @@  proc examine-host-examine {install} {
 }
 
 proc need-hosts/host-examine-xen {} { return {} }
+proc prep-job/host-examine-xen {} { examine-host-prep }
 proc run-job/host-examine-xen {} { examine-host-examine xen }
 
 proc need-hosts/host-examine-linux {} { return {} }
+proc prep-job/host-examine-xen {} { examine-host-prep }
 proc need-hosts/host-examine-linux {} { examine-host-examine debian }
 
 #---------- builds ----------