From 2a3a35334a9237d521f3e644e204c454ae1f595a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=B2=E1=84=89=E1=85=A5=E1=86=BC=E1=84=83?= =?UTF-8?q?=E1=85=A5=E1=86=A8?= Date: Mon, 29 Jan 2018 20:42:22 +0900 Subject: [PATCH] Logging root password --- builder/ncloud/step_get_rootpassword.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builder/ncloud/step_get_rootpassword.go b/builder/ncloud/step_get_rootpassword.go index b696e594d..9ec0feae2 100644 --- a/builder/ncloud/step_get_rootpassword.go +++ b/builder/ncloud/step_get_rootpassword.go @@ -35,6 +35,8 @@ func (s *StepGetRootPassword) getRootPassword(serverInstanceNo string, privateKe return "", err } + s.Say(fmt.Sprintf("Root password is %s", rootPassword.RootPassword)) + return rootPassword.RootPassword, nil }