packer-cn/website/source/docs/provisioners/windows-shell.html.md.erb

79 lines
3.2 KiB
Plaintext
Raw Permalink Normal View History

2015-06-14 11:27:48 -07:00
---
2017-06-14 18:04:16 -07:00
description: |
The windows-shell Packer provisioner runs commands on Windows using the cmd
shell.
2015-08-03 11:32:54 -07:00
layout: docs
2017-06-14 18:04:16 -07:00
page_title: 'Windows Shell - Provisioners'
sidebar_current: 'docs-provisioners-windows-shell'
---
2015-06-14 11:27:48 -07:00
# Windows Shell Provisioner
Type: `windows-shell`
2015-08-03 11:32:54 -07:00
The windows-shell Packer provisioner runs commands on a Windows machine using
`cmd`. It assumes it is running over WinRM.
2015-06-14 11:27:48 -07:00
## Basic Example
The example below is fully functional.
```json
2015-06-14 11:27:48 -07:00
{
"type": "windows-shell",
"inline": ["dir c:\\"]
}
```
## Configuration Reference
<%= partial "partials/provisioners/shell-config" %>
2015-08-03 11:32:54 -07:00
2017-06-14 18:04:16 -07:00
- `environment_vars` (array of strings) - An array of key/value pairs to
2015-08-03 11:32:54 -07:00
inject prior to the execute\_command. The format should be `key=value`.
2018-10-26 17:02:51 -07:00
Packer injects some environmental variables by default into the
environment, as well, which are covered in the section below.
2015-08-03 11:32:54 -07:00
2017-06-14 18:04:16 -07:00
- `execute_command` (string) - The command to use to execute the script. By
2015-08-03 11:32:54 -07:00
default this is `{{ .Vars }}"{{ .Path }}"`. The value of this is treated as
[template engine](/docs/templates/engine.html). This is a
[template engine](/docs/templates/engine.html). Therefore, you may
use user variables and template functions in this field. In addition, there
are two available extra variables:
- `Path` is the path to the script to run
- `Vars` is the list of `environment_vars`, if configured.
2015-08-03 11:32:54 -07:00
2017-06-14 18:04:16 -07:00
- `remote_path` (string) - The path where the script will be uploaded to in
2018-10-26 17:02:51 -07:00
the machine. This defaults to "c:/Windows/Temp/script.bat". This value must
be a writable location and any parent directories must already exist.
2015-08-03 11:32:54 -07:00
2017-06-14 18:04:16 -07:00
- `start_retry_timeout` (string) - The amount of time to attempt to *start*
2015-08-03 11:32:54 -07:00
the remote process. By default this is "5m" or 5 minutes. This setting
2018-10-26 17:02:51 -07:00
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.
2019-04-08 16:05:04 +02:00
<%= partial "partials/provisioners/common-config" %>
## 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:
2018-10-26 17:02:51 -07:00
- `PACKER_BUILD_NAME` is set to the [name of the
build](/docs/templates/builders.html#named-builds) 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.
2018-10-26 17:02:51 -07:00
- `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 18:04:16 -07: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.