2018-01-11 04:57:53 -05:00
|
|
|
package ncloud
|
|
|
|
|
|
|
|
import (
|
2018-01-29 08:41:22 -05:00
|
|
|
"context"
|
2018-01-29 07:47:58 -05:00
|
|
|
"fmt"
|
|
|
|
|
2018-01-11 04:57:53 -05:00
|
|
|
ncloud "github.com/NaverCloudPlatform/ncloud-sdk-go/sdk"
|
2018-01-29 08:41:22 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2018-01-11 04:57:53 -05:00
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
)
|
|
|
|
|
|
|
|
type StepGetRootPassword struct {
|
|
|
|
Conn *ncloud.Conn
|
|
|
|
GetRootPassword func(serverInstanceNo string, privateKey string) (string, error)
|
|
|
|
Say func(message string)
|
|
|
|
Error func(e error)
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewStepGetRootPassword(conn *ncloud.Conn, ui packer.Ui) *StepGetRootPassword {
|
|
|
|
var step = &StepGetRootPassword{
|
|
|
|
Conn: conn,
|
|
|
|
Say: func(message string) { ui.Say(message) },
|
|
|
|
Error: func(e error) { ui.Error(e.Error()) },
|
|
|
|
}
|
|
|
|
|
|
|
|
step.GetRootPassword = step.getRootPassword
|
|
|
|
|
|
|
|
return step
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepGetRootPassword) getRootPassword(serverInstanceNo string, privateKey string) (string, error) {
|
|
|
|
reqParams := new(ncloud.RequestGetRootPassword)
|
|
|
|
reqParams.ServerInstanceNo = serverInstanceNo
|
|
|
|
reqParams.PrivateKey = privateKey
|
|
|
|
|
|
|
|
rootPassword, err := s.Conn.GetRootPassword(reqParams)
|
|
|
|
if err != nil {
|
2018-01-11 20:12:47 -05:00
|
|
|
return "", err
|
2018-01-11 04:57:53 -05:00
|
|
|
}
|
|
|
|
|
2018-01-29 06:42:22 -05:00
|
|
|
s.Say(fmt.Sprintf("Root password is %s", rootPassword.RootPassword))
|
|
|
|
|
2018-01-11 04:57:53 -05:00
|
|
|
return rootPassword.RootPassword, nil
|
|
|
|
}
|
|
|
|
|
2018-01-29 08:41:22 -05:00
|
|
|
func (s *StepGetRootPassword) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
2018-01-11 04:57:53 -05:00
|
|
|
s.Say("Get Root Password")
|
|
|
|
|
|
|
|
serverInstanceNo := state.Get("InstanceNo").(string)
|
|
|
|
loginKey := state.Get("LoginKey").(*LoginKey)
|
|
|
|
|
|
|
|
rootPassword, err := s.GetRootPassword(serverInstanceNo, loginKey.PrivateKey)
|
|
|
|
|
|
|
|
state.Put("Password", rootPassword)
|
|
|
|
|
|
|
|
return processStepResult(err, s.Error, state)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*StepGetRootPassword) Cleanup(multistep.StateBag) {
|
|
|
|
}
|