For some reason, Ansible developers felt like it was important that users name their host groups according to Python identifier naming conventions. This prevents, among other things, hyphens from being used in group names. Luckily, this ridiculous behavior is configurable.
13 lines
191 B
INI
13 lines
191 B
INI
# vim: set ft=dosini :
|
|
|
|
[defaults]
|
|
inventory = hosts
|
|
|
|
gathering = smart
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = .fact-cache
|
|
|
|
force_valid_group_names = ignore
|
|
|
|
remote_tmp = /var/tmp
|