1
0
Fork 0
This repository has been archived on 2023-11-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ansible-jenkins-php-v1/ansible.cfg
2020-01-17 23:35:15 +01:00

32 lines
958 B
INI

# config file for ansible -- http://ansible.com/
# ==============================================
# nearly all parameters can be overridden in ansible-playbook
# or with command line flags. ansible will read ANSIBLE_CONFIG,
# ansible.cfg in the current working directory, .ansible.cfg in
# the home directory or /etc/ansible/ansible.cfg, whichever it
# finds first
[defaults]
# some basic default values...
inventory = ./inventory.yml
#remote_tmp = /tmp/.ansible
remote_user = root
transport = ssh
remote_port = 22
# We try not to load the hypervisor
forks = 3
# For the time being, we don't trigger handlers (for example
# restart SSH after modifying its config) when an error
# happened.
# It is the default Ansible behaviour but I prefer to explicitly
# set it here in case a change is needed later.
force_handlers = False
#filter_plugins = ./plugins/filter_plugins
#[privilege_escalation]
#become = True