diff --git a/docs/man/cdist-reference.text.sh b/docs/man/cdist-reference.text.sh index 8e3f49a2..8d230028 100755 --- a/docs/man/cdist-reference.text.sh +++ b/docs/man/cdist-reference.text.sh @@ -59,62 +59,78 @@ cat << eof PATHS ----- -If not specified otherwise, all paths are relative to the checkout directory. +$HOME/.cdist:: + The standard cdist configuration directory relative to your home directory + This is usually the place you want to store your site specific configuration -conf/:: - Contains the (static) configuration like manifests, types and explorers. +cdist/conf/:: + The distribution configuration directory + This contains types and explorers to be used -conf/manifest/init:: +confdir:: + Cdist will use all available configuration directories and create + a temporary confdir containing links to the real configuration directories. + This way it is possible to merge configuration directories. + + By default it consists of everything in $HOME/.cdist and cdist/conf/. + + For more details see cdist(1) + +confdir/manifest/init:: This is the central entry point. It is an executable (+x bit set) shell script that can use values from the explorers to decide which configuration to create for the specified target host. Its intent is to used to define mapping from configurations to hosts. -conf/manifest/*:: +confdir/manifest/*:: All other files in this directory are not directly used by cdist, but you can seperate configuration mappings, if you have a lot of code in the conf/manifest/init file. This may also be helpful to have different admins maintain different groups of hosts. -conf/explorer/:: +confdir/explorer/:: Contains explorers to be run on the target hosts, see cdist-explorer(7). -conf/type/:: +confdir/type/:: Contains all available types, which are used to provide some kind of functionality. See cdist-type(7). -conf/type//:: +confdir/type//:: Home of the type . This directory is referenced by the variable __type (see below). -conf/type//man.text:: +confdir/type//man.text:: Manpage in Asciidoc format (required for inclusion into upstream) -conf/type//manifest:: +confdir/type//manifest:: Used to generate additional objects from a type. -conf/type//gencode-local:: +confdir/type//gencode-local:: Used to generate code to be executed on the source host -conf/type//gencode-remote:: +confdir/type//gencode-remote:: Used to generate code to be executed on the target host -conf/type//parameter/required:: +confdir/type//parameter/required:: Parameters required by type, \n seperated list. -conf/type//parameter/optional:: +confdir/type//parameter/optional:: Parameters optionally accepted by type, \n seperated list. -conf/type//parameter/boolean:: +confdir/type//parameter/boolean:: Boolean parameters accepted by type, \n seperated list. -conf/type//explorer:: +confdir/type//explorer:: Location of the type specific explorers. This directory is referenced by the variable __type_explorer (see below). See cdist-explorer(7). +confdir/type//files:: + This directory is reserved for user data and will not be used + by cdist at any time + out/:: This directory contains output of cdist and is usually located in a temporary directory and thus will be removed after the run.