packer-cn/website/source/docs/provisioners/powershell.html.md

124 lines
5.3 KiB
Markdown
Raw Normal View History

2015-06-14 14:08:32 -04:00
---
2017-06-14 21:04:16 -04:00
description: |
The shell Packer provisioner provisions machines built by Packer using shell
scripts. Shell provisioning is the easiest way to get software installed and
configured on a machine.
2015-07-22 22:31:00 -04:00
layout: docs
2017-06-14 21:04:16 -04:00
page_title: 'PowerShell - Provisioners'
sidebar_current: 'docs-provisioners-powershell'
---
2015-06-14 14:08:32 -04:00
# PowerShell Provisioner
Type: `powershell`
The PowerShell Packer provisioner runs PowerShell scripts on Windows machines.
It assumes that the communicator in use is WinRM.
## Basic Example
The example below is fully functional.
2017-06-14 21:04:16 -04:00
``` json
2015-06-14 14:08:32 -04:00
{
"type": "powershell",
"inline": ["dir c:\\"]
}
```
## Configuration Reference
The reference of available configuration options is listed below. The only
required element is either "inline" or "script". Every other option is optional.
2015-06-14 14:08:32 -04:00
2015-07-22 22:31:00 -04:00
Exactly *one* of the following is required:
2015-06-14 14:08:32 -04:00
2017-06-14 21:04:16 -04:00
- `inline` (array of strings) - This is an array of commands to execute. The
commands are concatenated by newlines and turned into a single file, so they
are all executed within the same context. This allows you to change
2015-07-22 23:25:58 -04:00
directories in one command and use something in the directory in the next
and so on. Inline scripts are the easiest way to pull off simple tasks
within the machine.
2017-06-14 21:04:16 -04:00
- `script` (string) - The path to a script to upload and execute in
the machine. This path can be absolute or relative. If it is relative, it is
relative to the working directory when Packer is executed.
2015-07-22 23:25:58 -04:00
2017-06-14 21:04:16 -04:00
- `scripts` (array of strings) - An array of scripts to execute. The scripts
2015-07-22 23:25:58 -04:00
will be uploaded and executed in the order specified. Each script is
executed in isolation, so state such as variables from one script won't
carry on to the next.
2015-06-14 14:08:32 -04:00
Optional parameters:
- `binary` (boolean) - If true, specifies that the script(s) are binary files,
and Packer should therefore not convert Windows line endings to Unix line
endings (if there are any). By default this is false.
2015-07-22 23:25:58 -04:00
- `elevated_execute_command` (string) - The command to use to execute the elevated
script. By default this is as follows:
``` powershell
powershell -executionpolicy bypass "& { if (Test-Path variable:global:ProgressPreference){$ProgressPreference='SilentlyContinue'};. {{.Vars}}; &'{{.Path}}'; exit $LastExitCode }"
```
The value of this is treated as [configuration
template](/docs/templates/engine.html). There are two
available variables: `Path`, which is the path to the script to run, and
`Vars`, which is the location of a temp file containing the list of `environment_vars`, if configured.
2017-06-14 21:04:16 -04:00
- `environment_vars` (array of strings) - An array of key/value pairs to
2015-07-22 23:25:58 -04:00
inject prior to the execute\_command. The format should be `key=value`.
Packer injects some environmental variables by default into the environment,
as well, which are covered in the section below.
2015-07-22 23:25:58 -04:00
2017-06-14 21:04:16 -04:00
- `execute_command` (string) - The command to use to execute the script. By
default this is as follows:
``` powershell
powershell -executionpolicy bypass "& { if (Test-Path variable:global:ProgressPreference){$ProgressPreference='SilentlyContinue'};{{.Vars}}&'{{.Path}}';exit $LastExitCode }"
```
2015-07-22 23:25:58 -04:00
The value of this is treated as [configuration
2017-03-28 18:28:34 -04:00
template](/docs/templates/engine.html). There are two
2015-07-22 23:25:58 -04:00
available variables: `Path`, which is the path to the script to run, and
`Vars`, which is the list of `environment_vars`, if configured.
2015-07-22 23:25:58 -04:00
2017-06-14 21:04:16 -04:00
- `elevated_user` and `elevated_password` (string) - If specified, the
2015-07-22 23:25:58 -04:00
PowerShell script will be run with elevated privileges using the given
Windows user.
2017-06-14 21:04:16 -04:00
- `remote_path` (string) - The path where the script will be uploaded to in
the machine. This defaults to "c:/Windows/Temp/script.ps1". This value must be a
writable location and any parent directories must already exist.
2015-07-22 23:25:58 -04:00
2017-06-14 21:04:16 -04:00
- `start_retry_timeout` (string) - The amount of time to attempt to *start*
2015-07-22 23:25:58 -04:00
the remote process. By default this is "5m" or 5 minutes. This setting
exists in order to deal with times when SSH may restart, such as a
system reboot. Set this to a higher value if reboots take a longer amount
of time.
2017-06-14 21:04:16 -04:00
- `valid_exit_codes` (list of ints) - Valid exit codes for the script. By
2015-07-22 23:25:58 -04:00
default this is just 0.
## Default Environmental Variables
In addition to being able to specify custom environmental variables using the
`environment_vars` configuration, the provisioner automatically defines certain
commonly useful environmental variables:
2017-06-14 21:04:16 -04:00
- `PACKER_BUILD_NAME` is set to the name of the build that Packer is running.
This is most useful when Packer is making multiple builds and you want to
distinguish them slightly from a common provisioning script.
- `PACKER_BUILDER_TYPE` is the type of the builder that was used to create the
machine that the script is running on. This is useful if you want to run
only certain parts of the script on systems built with certain builders.
2017-06-14 21:04:16 -04:00
- `PACKER_HTTP_ADDR` If using a builder that provides an http server for file
transfer (such as hyperv, parallels, qemu, virtualbox, and vmware), this
will be set to the address. You can use this address in your provisioner to
download large files over http. This may be useful if you're experiencing
slower speeds using the default file provisioner. A file provisioner using
the `winrm` communicator may experience these types of difficulties.