Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
e1530c39
Commit
e1530c39
authored
Jun 14, 2015
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
website: windows-shell
parent
339a4ccd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
80 additions
and
0 deletions
+80
-0
website/source/docs/provisioners/shell.html.markdown
website/source/docs/provisioners/shell.html.markdown
+4
-0
website/source/docs/provisioners/windows-shell.html.md
website/source/docs/provisioners/windows-shell.html.md
+75
-0
website/source/layouts/docs.erb
website/source/layouts/docs.erb
+1
-0
No files found.
website/source/docs/provisioners/shell.html.markdown
View file @
e1530c39
...
...
@@ -13,6 +13,10 @@ The shell Packer provisioner provisions machines built by Packer using shell scr
Shell provisioning is the easiest way to get software installed and configured
on a machine.
->
**Building Windows images?**
You probably want to use the
[
PowerShell
](
/docs/provisioners/powershell.html
)
or
[
Windows Shell
](
/docs/provisioners/windows-shell.html
)
provisioners.
## Basic Example
The example below is fully functional.
...
...
website/source/docs/provisioners/windows-shell.html.md
0 → 100644
View file @
e1530c39
---
layout
:
"
docs"
page_title
:
"
Windows
Shell
Provisioner"
description
:
|-
The windows-shell Packer provisioner runs commands on Windows using the cmd shell.
---
# Windows Shell Provisioner
Type:
`windows-shell`
The windows-shell Packer provisioner runs commands on a Windows machine
using
`cmd`
. It assumes it is running over WinRM.
## Basic Example
The example below is fully functional.
```
javascript
{
"
type
"
:
"
windows-shell
"
,
"
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.
Exactly _one_ of the following is required:
*
`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 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.
*
`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.
*
`scripts`
(array of strings) - An array of scripts to execute. The scripts
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.
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.
*
`environment_vars`
(array of strings) - An array of key/value pairs
to 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.
*
`execute_command`
(string) - The command to use to execute the script.
By default this is
`{{ .Vars }}"{{ .Path }}"`
. The value of this is
treated as
[
configuration template
](
/docs/templates/configuration-templates.html
)
.
There are two available variables:
`Path`
, which is
the path to the script to run, and
`Vars`
, which is the list of
`environment_vars`
, if configured.
*
`remote_path`
(string) - The path where the script will be uploaded to
in the machine. This defaults to "/tmp/script.sh". This value must be
a writable location and any parent directories must already exist.
*
`start_retry_timeout`
(string) - The amount of time to attempt to
_start_ 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.
website/source/layouts/docs.erb
View file @
e1530c39
...
...
@@ -50,6 +50,7 @@
<li><a
href=
"/docs/provisioners/shell.html"
>
Shell Scripts
</a></li>
<li><a
href=
"/docs/provisioners/file.html"
>
File Uploads
</a></li>
<li><a
href=
"/docs/provisioners/powershell.html"
>
PowerShell
</a></li>
<li><a
href=
"/docs/provisioners/windows-shell.html"
>
Windows Shell
</a></li>
<li><a
href=
"/docs/provisioners/ansible-local.html"
>
Ansible
</a></li>
<li><a
href=
"/docs/provisioners/chef-client.html"
>
Chef Client
</a></li>
<li><a
href=
"/docs/provisioners/chef-solo.html"
>
Chef Solo
</a></li>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment