diff options
author | 2019-08-22 15:01:07 +0200 | |
---|---|---|
committer | 2019-09-04 11:24:52 +0200 | |
commit | 2e34522351d40edd0e37b4919630736748949f2a (patch) | |
tree | f1263b0bfa307815eaab713a3a5893e971bc258a /tools/cicdansible | |
parent | e465912f7a9d5088f06bd7d0a9bb60c010b05968 (diff) |
Add ansible configuration file
This commit adds the ansible configuration file, that configures
pretty logging and, handling of connections and inventory, etc to
make the playbook nicer to use.
Change-Id: Ibf9eded62f87d338b4b215e8b0b37d80ec86b219
Issue-ID: OOM-2042
Signed-off-by: Michal Zegan <m.zegan@samsung.com>
Diffstat (limited to 'tools/cicdansible')
-rw-r--r-- | tools/cicdansible/ansible.cfg | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/cicdansible/ansible.cfg b/tools/cicdansible/ansible.cfg new file mode 100644 index 00000000..e74dda58 --- /dev/null +++ b/tools/cicdansible/ansible.cfg @@ -0,0 +1,18 @@ +#Ansible configuration used when running the playbook. +[defaults] +#Stdout callback. +stdout_callback=debug +#Default verbosity level, for logging all module outputs. +verbosity=1 + +[inventory] +#Fail when inventory parsing fails. +any_unparsed_is_failed=true + +[connection] +#Enable ansible pipelining. +pipelining=true + +[ssh_connection] +#Increase control persist settings. +ssh_args=-C -o ControlMaster=auto -o ControlPersist=30m |