Commit 518ad704 authored by Chris Bednarski's avatar Chris Bednarski

Added notes to warn against manifest_dir and note that manifest_file can be...

Added notes to warn against manifest_dir and note that manifest_file can be overloaded with a directory
parent 39a8ba13
...@@ -40,9 +40,10 @@ The reference of available configuration options is listed below. ...@@ -40,9 +40,10 @@ The reference of available configuration options is listed below.
Required parameters: Required parameters:
* `manifest_file` (string) - The manifest file for Puppet to use in order * `manifest_file` (string) - This is either a path to a puppet manifest (`.pp`
to compile and run a catalog. This file must exist on your local system file) _or_ a directory containing multiple manifests that puppet will apply.
and will be uploaded to the remote machine. These file(s) must exist on your local system and will be uploaded to the
remote machine.
Optional parameters: Optional parameters:
...@@ -64,6 +65,11 @@ Optional parameters: ...@@ -64,6 +65,11 @@ Optional parameters:
the `manifest_file`. It is a separate directory that will be set as the `manifest_file`. It is a separate directory that will be set as
the "manifestdir" setting on Puppet. the "manifestdir" setting on Puppet.
~> `manifest_dir` is passed to `puppet apply` as the `--manifestdir` option.
This option was deprecated in puppet 3.6, and is slated to be removed in
puppet 4.0. If you have multiple manifests you should simply use
`manifest_file` instead.
* `module_paths` (array of strings) - This is an array of paths to module * `module_paths` (array of strings) - This is an array of paths to module
directories on your local filesystem. These will be uploaded to the remote directories on your local filesystem. These will be uploaded to the remote
machine. By default, this is empty. machine. By default, this is empty.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment