From af3e922b26a970fe24e830e23da2aaaa13e47b39 Mon Sep 17 00:00:00 2001 From: Rafael Garcia Date: Fri, 26 Jul 2013 14:15:02 -0700 Subject: [PATCH] provisioner/salt: docs --- .../docs/provisioners/salt.html.markdown | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 website/source/docs/provisioners/salt.html.markdown diff --git a/website/source/docs/provisioners/salt.html.markdown b/website/source/docs/provisioners/salt.html.markdown new file mode 100644 index 000000000..827d67eca --- /dev/null +++ b/website/source/docs/provisioners/salt.html.markdown @@ -0,0 +1,29 @@ +--- +layout: "docs" +--- + +# Salt Provisioner + +Type: `salt` + +The salt provisioner provisions machines built by Packer using [Salt](http://saltstack.com/) states. + +## Basic Example + +The example below is fully functional. + +
+{
+    "type": "salt",
+    "bootstrap_args": "git v0.14.0"
+}
+
+ +## Configuration Reference + +The reference of available configuration options is listed below: + +* `skip_bootstrap` (boolean) - By default Packer 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. Default is no arguments.