> @@ -122,6 +122,9 @@ public IMachine apply(MasterSpec masterSpec) {
> logger.debug(">> awaiting installation of guest additions on vm: %s",
> masterName);
> ListenableFuture<ExecResponse> execInstallGA =
> machineUtils.runScriptOnNode(nodeMetadata,
> new InstallGuestAdditions(vmSpec, version),
> RunScriptOptions.NONE);
> + ExecResponse execInstallGAResponse =
> Futures.getUnchecked(execInstallGA);
> + checkState(execInstallGAResponse.getExitStatus() == 0, "exec
> installation of guest additions on vm(%s) " +
> + "failed", masterName);
Functional change.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/71/files#r16941346