2015-12-22 09:56:33 -05:00
|
|
|
package lxc
|
|
|
|
|
|
|
|
import (
|
2018-01-22 18:32:33 -05:00
|
|
|
"context"
|
2015-12-22 09:56:33 -05:00
|
|
|
"fmt"
|
2018-07-29 06:16:41 -04:00
|
|
|
"log"
|
|
|
|
"os/user"
|
2015-12-22 09:56:33 -05:00
|
|
|
"path/filepath"
|
2018-01-22 20:21:10 -05:00
|
|
|
|
2018-01-22 18:32:33 -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 stepLxcCreate struct{}
|
|
|
|
|
2019-03-29 11:50:02 -04:00
|
|
|
func (s *stepLxcCreate) 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
|
|
|
|
|
|
|
|
// TODO: read from env
|
|
|
|
lxc_dir := "/var/lib/lxc"
|
2018-07-29 06:16:41 -04:00
|
|
|
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")
|
|
|
|
}
|
2015-12-22 09:56:33 -05:00
|
|
|
rootfs := filepath.Join(lxc_dir, name, "rootfs")
|
|
|
|
|
|
|
|
if config.PackerForce {
|
|
|
|
s.Cleanup(state)
|
|
|
|
}
|
|
|
|
|
|
|
|
commands := make([][]string, 3)
|
2018-05-16 17:40:22 -04:00
|
|
|
commands[0] = append(commands[0], "env")
|
|
|
|
commands[0] = append(commands[0], config.EnvVars...)
|
|
|
|
commands[0] = append(commands[0], "lxc-create")
|
2017-10-30 21:48:43 -04:00
|
|
|
commands[0] = append(commands[0], config.CreateOptions...)
|
|
|
|
commands[0] = append(commands[0], []string{"-n", name, "-t", config.Name, "--"}...)
|
2015-12-22 09:56:33 -05:00
|
|
|
commands[0] = append(commands[0], config.Parameters...)
|
|
|
|
// prevent tmp from being cleaned on boot, we put provisioning scripts there
|
|
|
|
// todo: wait for init to finish before moving on to provisioning instead of this
|
|
|
|
commands[1] = []string{"touch", filepath.Join(rootfs, "tmp", ".tmpfs")}
|
2017-10-30 21:48:43 -04:00
|
|
|
commands[2] = append([]string{"lxc-start"}, config.StartOptions...)
|
|
|
|
commands[2] = append(commands[2], []string{"-d", "--name", name}...)
|
2015-12-22 09:56:33 -05:00
|
|
|
|
|
|
|
ui.Say("Creating container...")
|
|
|
|
for _, command := range commands {
|
2018-05-16 17:40:22 -04:00
|
|
|
err := RunCommand(command...)
|
2015-12-22 09:56:33 -05:00
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error creating container: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
state.Put("mount_path", rootfs)
|
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *stepLxcCreate) Cleanup(state multistep.StateBag) {
|
|
|
|
config := state.Get("config").(*Config)
|
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
|
|
|
|
command := []string{
|
|
|
|
"lxc-destroy", "-f", "-n", config.ContainerName,
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.Say("Unregistering and deleting virtual machine...")
|
2018-05-16 17:40:22 -04:00
|
|
|
if err := RunCommand(command...); err != nil {
|
2015-12-22 09:56:33 -05:00
|
|
|
ui.Error(fmt.Sprintf("Error deleting virtual machine: %s", err))
|
|
|
|
}
|
|
|
|
}
|