59 lines
1.4 KiB
Go
59 lines
1.4 KiB
Go
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License. See the LICENSE file in builder/azure for license information.
|
|
|
|
package lin
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/mitchellh/multistep"
|
|
"github.com/mitchellh/packer/packer"
|
|
)
|
|
|
|
type StepGeneralizeOS struct {
|
|
Command string
|
|
}
|
|
|
|
func (s *StepGeneralizeOS) Run(state multistep.StateBag) multistep.StepAction {
|
|
ui := state.Get("ui").(packer.Ui)
|
|
comm := state.Get("communicator").(packer.Communicator)
|
|
|
|
ui.Say("Executing OS generalization...")
|
|
|
|
var stdout, stderr bytes.Buffer
|
|
cmd := &packer.RemoteCmd{
|
|
Command: s.Command,
|
|
Stdout: &stdout,
|
|
Stderr: &stderr,
|
|
}
|
|
|
|
if err := comm.Start(cmd); err != nil {
|
|
err := fmt.Errorf("Failed executing OS generalization command: %s", err)
|
|
state.Put("error", err)
|
|
ui.Error(err.Error())
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
// Wait for the command to run
|
|
cmd.Wait()
|
|
|
|
// If the command failed to run, notify the user in some way.
|
|
if cmd.ExitStatus != 0 {
|
|
state.Put("error", fmt.Errorf(
|
|
"OS generalization has non-zero exit status.\n\nStdout: %s\n\nStderr: %s",
|
|
stdout.String(), stderr.String()))
|
|
return multistep.ActionHalt
|
|
}
|
|
|
|
log.Printf("OS generalization stdout: %s", stdout.String())
|
|
log.Printf("OS generalization stderr: %s", stderr.String())
|
|
|
|
return multistep.ActionContinue
|
|
}
|
|
|
|
func (s *StepGeneralizeOS) Cleanup(state multistep.StateBag) {
|
|
// do nothing
|
|
}
|