-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.debops.cfg
59 lines (44 loc) · 2.01 KB
/
.debops.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- conf -*-
# Define custom paths which can be used to override files and templates in
# Ansible roles or inject tasks via lookup plugins provided with DebOps.
[override_paths]
files_path = ansible/overrides/files
tasks_path = ansible/overrides/tasks
templates_path = ansible/overrides/templates
[ansible defaults]
# Path to the default Ansible inventory directory managed in the DebOps project
# directory.
inventory = ansible/inventory
# String which will be set as the "ansible_managed" variable in templates
# generated by Ansible.
ansible_managed = This file is managed remotely, all changes will be lost
# Don't show tasks that were skipped during Ansible execution.
display_skipped_hosts = false
# In case of failure, Ansible creates the '<playbook>.retry' files beside the
# playbook which contain names of hosts that failed. This is useless with
# DebOps since playbooks are in a central location therefore it will be
# disabled by default.
retry_files_enabled = false
# Make the default output of 'ansible-playbook' easier to read by a human.
stdout_callback = yaml
# Define the list of the built-in callback plugins enabled by default.
callbacks_enabled = timer
# Enable or disable support for for connection pipelining. This has
# implications for 'become' operations - the 'requiretty' option in
# /etc/suders must be disabled for pipelining to work correctly.
pipelining = false
[ansible diff]
# If enabled, Ansible modules will always show differences when their
# state has changed. Equivalent to adding '--diff' option on the
# command line on each execution.
always = false
[ansible inventory]
# This option disables the warnings about missing Ansible inventory groups
# defined in a playbook. This warning message is very common in DebOps
# playbooks and disabling it is recommended.
host_pattern_mismatch = ignore
[ansible privilege_escalation]
# Tell Ansible to always ask for the '--become' password. This might be
# useful in environments where "sudo" password is required on each
# execution.
become_ask_pass = false