2017-09-02 06:40:43 +00:00
|
|
|
[GLOBAL]
|
|
|
|
# archiving
|
|
|
|
# Use specified archiving. Valid values include:
|
|
|
|
# none, tar, tgz, tbz2 and txz.
|
|
|
|
# archiving = tar
|
|
|
|
#
|
|
|
|
# beta
|
|
|
|
# Enable beta functionality. It recognizes boolean values from
|
|
|
|
# yes/no, on/off, true/false and 1/0
|
|
|
|
# beta = no
|
|
|
|
#
|
|
|
|
# cache_path_pattern
|
|
|
|
# Specify cache path pattern.
|
|
|
|
# cache_path_pattern = %h
|
|
|
|
#
|
2020-06-01 17:11:58 +00:00
|
|
|
# colored_output
|
2020-06-05 11:59:17 +00:00
|
|
|
# Colorize cdist's output. If enabled, cdist will use different colors for
|
|
|
|
# different log levels.
|
2020-06-06 11:39:29 +00:00
|
|
|
# Recognized values are 'always', 'never', and 'auto'.
|
|
|
|
# If the value is 'auto', colors are enabled if stdout is a TTY unless
|
|
|
|
# the NO_COLOR (https://no-color.org/) environment variable is defined.
|
2020-06-01 17:11:58 +00:00
|
|
|
# colored_output = auto
|
|
|
|
#
|
2017-09-02 06:40:43 +00:00
|
|
|
# conf_dir
|
2017-09-19 11:52:49 +00:00
|
|
|
# List of configuration directories separated with the character conventionally
|
|
|
|
# used by the operating system to separate search path components (as in PATH),
|
|
|
|
# such as ':' for POSIX or ';' for Windows.
|
2017-09-02 06:40:43 +00:00
|
|
|
# If also specified at command line then values from command line are
|
|
|
|
# appended to this value.
|
2020-04-26 17:06:42 +00:00
|
|
|
# Notice that this works in a "last one wins" fashion, so if a type is redefined
|
|
|
|
# in multiple conf_dirs, the last one in which it is defined will be used.
|
|
|
|
# Consider using a unique prefix for your own roles if this can be an issue.
|
2017-09-02 06:40:43 +00:00
|
|
|
# conf_dir = <dir1>:<dir2>
|
|
|
|
#
|
|
|
|
# init_manifest
|
|
|
|
# Specify default initial manifest.
|
2020-05-22 14:14:29 +00:00
|
|
|
# init_manifest = <path-to-init-manifest>
|
2017-09-02 06:40:43 +00:00
|
|
|
#
|
|
|
|
# inventory_dir
|
|
|
|
# Specify inventory directory.
|
|
|
|
# inventory_dir = <path-to-inventory-dir>
|
|
|
|
#
|
|
|
|
# jobs
|
|
|
|
# Specify number of jobs for parallel processing. If -1 then the default,
|
|
|
|
# number of CPU's in the system is used. If 0 then parallel processing in
|
|
|
|
# jobs is disabled. If set to positive number then specified maximum
|
|
|
|
# number of processes will be used.
|
|
|
|
# jobs = 0
|
|
|
|
#
|
|
|
|
# local_shell
|
|
|
|
# Shell command used for local execution.
|
|
|
|
# local_shell = /bin/sh
|
|
|
|
#
|
|
|
|
# out_path
|
|
|
|
# Directory to save cdist output in.
|
2020-06-03 19:45:04 +00:00
|
|
|
# out_path =
|
2017-09-02 06:40:43 +00:00
|
|
|
#
|
|
|
|
# parallel
|
|
|
|
# Process hosts in parallel. If -1 then the default, number of CPU's in
|
|
|
|
# the system is used. If 0 then parallel processing of hosts is disabled.
|
|
|
|
# If set to positive number then specified maximum number of processes
|
|
|
|
# will be used.
|
|
|
|
# parallel = 0
|
|
|
|
#
|
|
|
|
# remote_copy
|
|
|
|
# Command to use for remote copy (should behave like scp).
|
|
|
|
# remote_copy =
|
|
|
|
#
|
|
|
|
# remote_exec
|
|
|
|
# Command to use for remote execution (should behave like ssh).
|
|
|
|
# remote_exec =
|
|
|
|
#
|
|
|
|
# remote_out_path
|
|
|
|
# Directory to save cdist output in on the target host.
|
|
|
|
# remote_out_path = /var/lib/cdist
|
|
|
|
#
|
|
|
|
# remote_shell
|
|
|
|
# Shell command at remote host used for remote execution.
|
|
|
|
# remote_shell = /bin/sh
|
|
|
|
#
|
|
|
|
# verbosity
|
2020-06-03 19:45:04 +00:00
|
|
|
# Set verbosity level. Valid values are:
|
2017-09-02 06:40:43 +00:00
|
|
|
# ERROR, WARNING, INFO, VERBOSE, DEBUG, TRACE and OFF.
|
|
|
|
# verbosity = INFO
|