Переглянути джерело

Ansible configuration added

So it searches for 'hosts' in the current directory.
merge-requests/1/merge
Christoph Haas 10 роки тому
джерело
коміт
dc419a696a
1 змінених файлів з 24 додано та 0 видалено
  1. +24
    -0
      ansible.cfg

+ 24
- 0
ansible.cfg Переглянути файл

@@ -0,0 +1,24 @@
# see http://docs.ansible.com/intro_configuration.html
[defaults]

# Do not show skipped hosts
display_skipped_hosts = False

# Look for the inventory of hosts in the current directory
hostfile = ./hosts

# Connect as 'root' by default via SSH
remote_user = root

# Do not use cowsay
nocows = 1

# Connect to up to 50 server in parallel
forks = 50

# Speed improvement, but may break sudo with requiretty
pipelining = True

# Log actions
log_path = ./log


Завантаження…
Відмінити
Зберегти