Documentation
¶
Overview ¶
This package implements a provisioner for Packer that executes shell scripts within the remote machine.
Index ¶
Constants ¶
View Source
const DefaultRemotePath = "c:/Windows/Temp/script.bat"
FIXME query remote host or use %SYSTEMROOT%, %TEMP% and more creative filename
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct {
shell.Provisioner `mapstructure:",squash"`
// The command used to execute the script. The '{{ .Path }}' variable
// should be used to specify where the script goes, {{ .Vars }}
// can be used to inject the environment_vars into the environment.
ExecuteCommand string `mapstructure:"execute_command"`
// The timeout for retrying to start the process. Until this timeout
// is reached, if the provisioner can't start a process, it retries.
// This can be set high to allow for reboots.
StartRetryTimeout time.Duration `mapstructure:"start_retry_timeout"`
// This is used in the template generation to format environment variables
// inside the `ExecuteCommand` template.
EnvVarFormat string `mapstructure:"env_var_format"`
// contains filtered or unexported fields
}
type ExecuteCommandTemplate ¶
type Provisioner ¶
type Provisioner struct {
// contains filtered or unexported fields
}
func (*Provisioner) Prepare ¶
func (p *Provisioner) Prepare(raws ...interface{}) error
func (*Provisioner) Provision ¶
func (p *Provisioner) Provision(ctx context.Context, ui packer.Ui, comm packer.Communicator) error
Click to show internal directories.
Click to hide internal directories.