Documentation
¶
Overview ¶
This package implements a provisioner for Packer that executes powershell scripts within the remote machine.
Index ¶
- type Config
- type EnvVarsTemplate
- type ExecuteCommandTemplate
- type Provisioner
- func (p *Provisioner) Cancel()
- func (p *Provisioner) Communicator() packer.Communicator
- func (p *Provisioner) ElevatedPassword() string
- func (p *Provisioner) ElevatedUser() string
- func (p *Provisioner) Prepare(raws ...interface{}) error
- func (p *Provisioner) Provision(ctx context.Context, ui packer.Ui, comm packer.Communicator) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { shell.Provisioner `mapstructure:",squash"` // The remote path where the file containing the environment variables // will be uploaded to. This should be set to a writable file that is in a // pre-existing directory. RemoteEnvVarPath string `mapstructure:"remote_env_var_path"` // The command used to execute the elevated 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. ElevatedExecuteCommand string `mapstructure:"elevated_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 // This is used in the template generation to format environment variables // inside the `ElevatedExecuteCommand` template. ElevatedEnvVarFormat string `mapstructure:"elevated_env_var_format"` // Instructs the communicator to run the remote script as a Windows // scheduled task, effectively elevating the remote user by impersonating // a logged-in user ElevatedUser string `mapstructure:"elevated_user"` ElevatedPassword string `mapstructure:"elevated_password"` // contains filtered or unexported fields }
type EnvVarsTemplate ¶ added in v1.2.2
type EnvVarsTemplate struct {
WinRMPassword string
}
type ExecuteCommandTemplate ¶
type Provisioner ¶
type Provisioner struct {
// contains filtered or unexported fields
}
func (*Provisioner) Cancel ¶
func (p *Provisioner) Cancel()
func (*Provisioner) Communicator ¶ added in v1.3.4
func (p *Provisioner) Communicator() packer.Communicator
func (*Provisioner) ElevatedPassword ¶ added in v1.3.4
func (p *Provisioner) ElevatedPassword() string
func (*Provisioner) ElevatedUser ¶ added in v1.3.4
func (p *Provisioner) ElevatedUser() string
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.