packer-cn/builder/lxc/step_export.go

88 lines
2.1 KiB
Go
Raw Normal View History

2015-12-22 09:56:33 -05:00
package lxc
import (
"context"
2015-12-22 09:56:33 -05:00
"fmt"
2016-05-25 15:34:51 -04:00
"io"
"log"
2015-12-22 09:56:33 -05:00
"os"
"os/user"
2016-05-25 15:34:51 -04:00
"path/filepath"
2018-01-22 20:21:10 -05:00
"github.com/hashicorp/packer/helper/multistep"
2018-01-22 20:21:10 -05:00
"github.com/hashicorp/packer/packer"
2015-12-22 09:56:33 -05:00
)
type stepExport struct{}
func (s *stepExport) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
2015-12-22 09:56:33 -05:00
config := state.Get("config").(*Config)
ui := state.Get("ui").(packer.Ui)
name := config.ContainerName
lxc_dir := "/var/lib/lxc"
user, err := user.Current()
if err != nil {
log.Print("Cannot find current user. Falling back to /var/lib/lxc...")
}
if user.Uid != "0" && user.HomeDir != "" {
lxc_dir = filepath.Join(user.HomeDir, ".local", "share", "lxc")
}
containerDir := filepath.Join(lxc_dir, name)
2015-12-22 09:56:33 -05:00
outputPath := filepath.Join(config.OutputDir, "rootfs.tar.gz")
configFilePath := filepath.Join(config.OutputDir, "lxc-config")
configFile, err := os.Create(configFilePath)
if err != nil {
err := fmt.Errorf("Error creating config file: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
originalConfigFile, err := os.Open(config.ConfigFile)
if err != nil {
err := fmt.Errorf("Error opening config file: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
_, err = io.Copy(configFile, originalConfigFile)
2019-11-14 16:40:40 -05:00
if err != nil {
err := fmt.Errorf("error copying file %s: %v", config.ConfigFile, err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
commands := make([][]string, 3)
2015-12-22 09:56:33 -05:00
commands[0] = []string{
"lxc-stop", "--name", name,
}
commands[1] = []string{
"tar", "-C", containerDir, "--numeric-owner", "--anchored", "--exclude=./rootfs/dev/log", "-czf", outputPath, "./rootfs",
}
commands[2] = []string{
"chmod", "+x", configFilePath,
}
ui.Say("Exporting container...")
for _, command := range commands {
err := RunCommand(command...)
2015-12-22 09:56:33 -05:00
if err != nil {
err := fmt.Errorf("Error exporting container: %s", err)
state.Put("error", err)
ui.Error(err.Error())
return multistep.ActionHalt
}
}
return multistep.ActionContinue
}
func (s *stepExport) Cleanup(state multistep.StateBag) {}