2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-31 10:06:39 +00:00

Merge pull request #1951 from hu-weihua/osdeploy

Refine 'osdeploy' output message
This commit is contained in:
xuweibj 2016-10-11 15:22:05 +08:00 committed by GitHub
commit aa7c5c7a78

View File

@ -97,7 +97,7 @@ if ($help) {
}
if ($test) {
probe_utils->send_msg("stdout", "o", "Probe for OS provision process, realtime monitor of OS provision process.");
probe_utils->send_msg("stdout", "o", "Probe operating system provision process. Supports two modes - 'Realtime monitor' and 'Replay history'.");
exit 0;
}
@ -141,8 +141,6 @@ if ($rollforward_time_of_replay) {
$start_time_of_replay -= $1 * 60;
}
# $start_time_of_replay = 1472437250; ########################
$rst = do_replay($noderange, $start_time_of_replay, $end_time_of_replay);
exit $rst;
}
@ -508,7 +506,7 @@ sub conclusion_report {
}
}
} else {
probe_utils->send_msg("stdout", "o", "All nodes provision successfully");
probe_utils->send_msg("stdout", "o", "All nodes provisioned successfully");
}
return 0;
}