packer-cn/builder/lxd/step_publish.go

61 lines
1.4 KiB
Go
Raw Normal View History

2016-05-26 23:21:55 -04:00
package lxd
import (
"bytes"
"fmt"
"github.com/mitchellh/multistep"
"github.com/mitchellh/packer/packer"
"log"
"os/exec"
2016-05-30 21:13:09 -04:00
"regexp"
2016-05-26 23:21:55 -04:00
"strings"
)
2016-05-30 19:13:59 -04:00
type stepPublish struct{}
2016-05-26 23:21:55 -04:00
2016-05-30 19:13:59 -04:00
func (s *stepPublish) Run(state multistep.StateBag) multistep.StepAction {
2016-05-30 21:13:09 -04:00
var stdout, stderr bytes.Buffer
2016-05-26 23:21:55 -04:00
config := state.Get("config").(*Config)
ui := state.Get("ui").(packer.Ui)
name := config.ContainerName
2016-05-30 21:13:09 -04:00
args := []string{
2016-05-31 19:53:50 -04:00
// If we use `lxc stop <container>`, an ephemeral container would die forever.
// `lxc publish` has special logic to handle this case.
2016-05-30 21:13:09 -04:00
"lxc", "publish", "--force", name, "--alias", config.OutputImage,
2016-05-26 23:21:55 -04:00
}
2016-05-30 19:13:59 -04:00
ui.Say("Publishing container...")
2016-05-26 23:21:55 -04:00
cmd := exec.Command("sudo", args...)
cmd.Stdout = &stdout
cmd.Stderr = &stderr
err := cmd.Run()
stdoutString := strings.TrimSpace(stdout.String())
stderrString := strings.TrimSpace(stderr.String())
if _, ok := err.(*exec.ExitError); ok {
err = fmt.Errorf("Sudo command error: %s", stderrString)
}
log.Printf("stdout: %s", stdoutString)
log.Printf("stderr: %s", stderrString)
2016-05-30 21:13:09 -04:00
if err != nil {
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
r := regexp.MustCompile("([0-9a-fA-F]+)$")
fingerprint := r.FindAllStringSubmatch(stdoutString, -1)[0][0]
ui.Say(fmt.Sprintf("Created image: %s", fingerprint))
state.Put("imageFingerprint", fingerprint)
return multistep.ActionContinue
2016-05-26 23:21:55 -04:00
}
2016-05-30 21:13:09 -04:00
func (s *stepPublish) Cleanup(state multistep.StateBag) {}