As errors during an upgrade of Ganeti are harder to understand, as two versions of Ganeti are involved, provide more debug information for everything that happens during that process. Note that upgrades are a rare event, so we do not have to worry about the size of log files too much.
Signed-off-by: Klaus Aehlig <[email protected]> --- tools/post-upgrade | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/post-upgrade b/tools/post-upgrade index f611974..4d673e0 100644 --- a/tools/post-upgrade +++ b/tools/post-upgrade @@ -63,7 +63,8 @@ def main(): if utils.version.IsBefore(version, 2, 13, 0): result = utils.RunCmd(["gnt-cluster", "renew-crypto", - "--new-ssh-keys", "--no-ssh-key-check", "-f"]) + "--new-ssh-keys", "--no-ssh-key-check", "-f", "-d"]) + if result.failed: cli.ToStderr("Failed to create SSH keys: %s; Output %s" % (result.fail_reason, result.output)) -- 2.6.0.rc2.230.g3dd15c0
