File: step_mount_chroot.go

package info (click to toggle)
packer 1.6.6%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 33,156 kB
  • sloc: sh: 1,154; python: 619; makefile: 251; ruby: 205; xml: 97
file content (51 lines) | stat: -rw-r--r-- 1,277 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package hyperone

import (
	"context"
	"fmt"
	"log"
	"strings"

	"github.com/hashicorp/packer/packer-plugin-sdk/multistep"
	packersdk "github.com/hashicorp/packer/packer-plugin-sdk/packer"
)

type stepMountChroot struct{}

func (s *stepMountChroot) Run(ctx context.Context, state multistep.StateBag) multistep.StepAction {
	config := state.Get("config").(*Config)
	ui := state.Get("ui").(packersdk.Ui)
	device := state.Get("device").(string)

	log.Printf("Mount path: %s", config.ChrootMountPath)

	ui.Say(fmt.Sprintf("Creating mount directory: %s", config.ChrootMountPath))

	opts := ""
	if len(config.MountOptions) > 0 {
		opts = "-o " + strings.Join(config.MountOptions, " -o ")
	}

	deviceMount := device
	if config.MountPartition != "" {
		deviceMount = fmt.Sprintf("%s%s", device, config.MountPartition)
	}

	commands := []string{
		fmt.Sprintf("mkdir -m 755 -p %s", config.ChrootMountPath),
		fmt.Sprintf("mount %s %s %s", opts, deviceMount, config.ChrootMountPath),
	}

	err := runCommands(commands, config.ctx, state)
	if err != nil {
		state.Put("error", err)
		ui.Error(err.Error())
		return multistep.ActionHalt
	}

	state.Put("mount_path", config.ChrootMountPath)

	return multistep.ActionContinue
}

func (s *stepMountChroot) Cleanup(state multistep.StateBag) {}