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
6d92e19a
Commit
6d92e19a
authored
Aug 23, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
website: delete salt.html.markdown
parent
3cb3a7cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
51 deletions
+0
-51
website/source/docs/provisioners/salt.html.markdown
website/source/docs/provisioners/salt.html.markdown
+0
-51
No files found.
website/source/docs/provisioners/salt.html.markdown
deleted
100644 → 0
View file @
3cb3a7cd
---
layout
:
"
docs"
---
# Salt Masterless Provisioner
Type:
`salt-masterless`
The
`salt-masterless`
provisioner provisions machines built by Packer using
[
Salt
](
http://saltstack.com/
)
states, without connecting to a Salt master.
## Basic Example
The example below is fully functional.
<pre
class=
"prettyprint"
>
{
"type": "salt-masterless",
"local_state_tree": "/Users/me/salt"
}
</pre>
## Configuration Reference
The reference of available configuration options is listed below. The only required argument is the path to your local salt state tree.
Required:
*
`local_state_tree`
(string) - The path to your local
[
state tree
](
http://docs.saltstack.com/ref/states/highstate.html#the-salt-state-tree
)
.
This will be uploaded to the
`/srv/salt`
on the remote, and removed before
shutdown.
Optional:
*
`skip_bootstrap`
(boolean) - By default the salt provisioner runs
[
salt bootstrap
](
https://github.com/saltstack/salt-bootstrap
)
to install
salt. Set this to true to skip this step.
*
`boostrap_args`
(string) - Arguments to send to the bootstrap script. Usage
is somewhat documented on
[
github
](
https://github.com/saltstack/salt-bootstrap
)
,
but the
[
script itself
](
https://github.com/saltstack/salt-bootstrap/blob/develop/bootstrap-salt.sh
)
has more detailed usage instructions. By default, no arguments are sent to
the script.
*
`temp_config_dir`
(string) - Where your local state tree will be copied
before moving to the
`/srv/salt`
directory. Default is
`/tmp/salt`
.
*
`minion_config`
(string) - The path to your local
[
minion config
](
http://docs.saltstack.com/topics/configuration.html
)
.
This will be uploaded to the
`/etc/salt`
on the remote.
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