2015-09-02 06:29:26 -04:00
|
|
|
---
|
2017-06-14 21:04:16 -04:00
|
|
|
description: |
|
|
|
|
The shell-local Packer post processor enables users to do some post processing
|
|
|
|
after artifacts have been built.
|
2015-09-02 06:29:26 -04:00
|
|
|
layout: docs
|
2017-06-14 21:04:16 -04:00
|
|
|
page_title: 'Local Shell - Post-Processors'
|
|
|
|
sidebar_current: 'docs-post-processors-shell-local'
|
2017-03-25 18:13:52 -04:00
|
|
|
---
|
2015-09-02 06:29:26 -04:00
|
|
|
|
|
|
|
# Local Shell Post Processor
|
|
|
|
|
|
|
|
Type: `shell-local`
|
|
|
|
|
2017-05-09 14:37:49 -04:00
|
|
|
The local shell post processor executes scripts locally during the post
|
|
|
|
processing stage. Shell local provides a convenient way to automate executing
|
|
|
|
some task with the packer outputs.
|
2015-09-02 06:29:26 -04:00
|
|
|
|
|
|
|
## Basic example
|
|
|
|
|
|
|
|
The example below is fully functional.
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` json
|
2015-09-02 06:29:26 -04:00
|
|
|
{
|
2016-02-22 12:23:24 -05:00
|
|
|
"type": "shell-local",
|
2015-09-02 06:29:26 -04:00
|
|
|
"inline": ["echo foo"]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## 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:
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `inline` (array of strings) - This is an array of commands to execute. The
|
2015-09-02 06:29:26 -04:00
|
|
|
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.
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `script` (string) - The path to a script to execute. This path can be
|
2016-11-21 19:36:10 -05:00
|
|
|
absolute or relative. If it is relative, it is relative to the working
|
|
|
|
directory when Packer is executed.
|
2015-09-02 06:29:26 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `scripts` (array of strings) - An array of scripts to execute. The scripts
|
2016-11-21 19:36:10 -05:00
|
|
|
will be 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-09-02 06:29:26 -04:00
|
|
|
|
|
|
|
Optional parameters:
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `environment_vars` (array of strings) - An array of key/value pairs to
|
2015-09-02 06:29:26 -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.
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `execute_command` (string) - The command to use to execute the script. By
|
2016-11-21 08:39:34 -05:00
|
|
|
default this is `chmod +x "{{.Script}}"; {{.Vars}} "{{.Script}}"`.
|
2017-03-28 18:28:34 -04:00
|
|
|
The value of this is treated as [template engine](/docs/templates/engine.html).
|
2016-11-21 08:39:34 -05:00
|
|
|
There are two available variables: `Script`, which is the path to the script
|
|
|
|
to run, `Vars`, which is the list of `environment_vars`, if configured.
|
2015-09-02 06:29:26 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `inline_shebang` (string) - The
|
2015-09-02 06:29:26 -04:00
|
|
|
[shebang](http://en.wikipedia.org/wiki/Shebang_%28Unix%29) value to use when
|
|
|
|
running commands specified by `inline`. By default, this is `/bin/sh -e`. If
|
|
|
|
you're not using `inline`, then this configuration has no effect.
|
|
|
|
**Important:** If you customize this, be sure to include something like the
|
|
|
|
`-e` flag, otherwise individual steps failing won't fail the provisioner.
|
|
|
|
|
|
|
|
## Execute Command Example
|
|
|
|
|
|
|
|
To many new users, the `execute_command` is puzzling. However, it provides an
|
|
|
|
important function: customization of how the command is executed. The most
|
|
|
|
common use case for this is dealing with **sudo password prompts**. You may also
|
|
|
|
need to customize this if you use a non-POSIX shell, such as `tcsh` on FreeBSD.
|
|
|
|
|
|
|
|
## 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.
|
2015-09-02 06:29:26 -04:00
|
|
|
This is most useful when Packer is making multiple builds and you want to
|
|
|
|
distinguish them slightly from a common provisioning script.
|
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
- `PACKER_BUILDER_TYPE` is the type of the builder that was used to create the
|
2015-09-02 06:29:26 -04:00
|
|
|
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.
|
2016-05-18 19:07:21 -04:00
|
|
|
|
|
|
|
## Safely Writing A Script
|
|
|
|
|
2016-12-07 21:18:59 -05:00
|
|
|
Whether you use the `inline` option, or pass it a direct `script` or `scripts`,
|
|
|
|
it is important to understand a few things about how the shell-local
|
|
|
|
post-processor works to run it safely and easily. This understanding will save
|
|
|
|
you much time in the process.
|
2016-05-18 19:07:21 -04:00
|
|
|
|
2016-12-07 21:18:59 -05:00
|
|
|
### Once Per Builder
|
2016-05-18 19:07:21 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
The `shell-local` script(s) you pass are run once per builder. That means that
|
2016-12-07 21:18:59 -05:00
|
|
|
if you have an `amazon-ebs` builder and a `docker` builder, your script will be
|
|
|
|
run twice. If you have 3 builders, it will run 3 times, once for each builder.
|
2016-05-18 19:07:21 -04:00
|
|
|
|
2016-12-07 21:18:59 -05:00
|
|
|
### Interacting with Build Artifacts
|
2016-05-18 19:07:21 -04:00
|
|
|
|
2016-12-07 21:18:59 -05:00
|
|
|
In order to interact with build artifacts, you may want to use the [manifest
|
|
|
|
post-processor](/docs/post-processors/manifest.html). This will write the list
|
|
|
|
of files produced by a `builder` to a json file after each `builder` is run.
|
2016-05-18 19:07:21 -04:00
|
|
|
|
2016-12-07 21:18:59 -05:00
|
|
|
For example, if you wanted to package a file from the file builder into
|
|
|
|
a tarball, you might wright this:
|
2016-05-18 19:07:21 -04:00
|
|
|
|
2017-06-14 21:04:16 -04:00
|
|
|
``` json
|
2016-05-18 19:07:21 -04:00
|
|
|
{
|
2017-03-25 18:13:52 -04:00
|
|
|
"builders": [
|
|
|
|
{
|
|
|
|
"content": "Lorem ipsum dolor sit amet",
|
|
|
|
"target": "dummy_artifact",
|
|
|
|
"type": "file"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"post-processors": [
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"output": "manifest.json",
|
|
|
|
"strip_path": true,
|
|
|
|
"type": "manifest"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"inline": [
|
|
|
|
"jq \".builds[].files[].name\" manifest.json | xargs tar cfz artifacts.tgz"
|
|
|
|
],
|
|
|
|
"type": "shell-local"
|
|
|
|
}
|
2016-12-07 21:18:59 -05:00
|
|
|
]
|
2017-03-25 18:13:52 -04:00
|
|
|
]
|
2016-05-18 19:07:21 -04:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-12-07 21:18:59 -05:00
|
|
|
This uses the [jq](https://stedolan.github.io/jq/) tool to extract all of the
|
|
|
|
file names from the manifest file and passes them to tar.
|
2016-05-18 19:07:21 -04:00
|
|
|
|
|
|
|
### Always Exit Intentionally
|
|
|
|
|
2016-12-07 21:18:59 -05:00
|
|
|
If any post-processor fails, the `packer build` stops and all interim artifacts
|
|
|
|
are cleaned up.
|
2016-05-18 19:07:21 -04:00
|
|
|
|
2016-12-07 21:18:59 -05:00
|
|
|
For a shell script, that means the script **must** exit with a zero code. You
|
|
|
|
*must* be extra careful to `exit 0` when necessary.
|