mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-05 04:40:42 +00:00
37 lines
789 B
Markdown
37 lines
789 B
Markdown
|
---
|
||
|
title: Default settings
|
||
|
---
|
||
|
|
||
|
{{< highlight YAML "linenos=table" >}}
|
||
|
---
|
||
|
# default is your current working dir
|
||
|
role_dir:
|
||
|
# don't write anything to filesystem
|
||
|
dry_run: False
|
||
|
|
||
|
logging:
|
||
|
# possible options debug | info | warning | error | critical
|
||
|
level: "warning"
|
||
|
# you can enable json logging if a parsable output is required
|
||
|
json: False
|
||
|
|
||
|
# path to write rendered template file
|
||
|
# default is your current working dir
|
||
|
output_dir:
|
||
|
# default is in-build templates dir
|
||
|
template_dir:
|
||
|
template: readme
|
||
|
|
||
|
# don't ask to overwrite if output file exists
|
||
|
force_overwrite: False
|
||
|
# load custom header from given file and append template output
|
||
|
# to it before write.
|
||
|
custom_header: ""
|
||
|
|
||
|
exclude_files: []
|
||
|
# Examples
|
||
|
# exclude_files:
|
||
|
# - molecule/
|
||
|
# - files/**/*.py
|
||
|
{{< /highlight >}}
|