16 lines
308 B
Markdown
16 lines
308 B
Markdown
# Ansible Configuration
|
|
[YouTube Guide](https://www.youtube.com/watch?v=2W_YE0fZs88)
|
|
|
|
## Location
|
|
```python
|
|
/etc/ansible/ansible.cfg
|
|
```
|
|
|
|
## Content
|
|
```python
|
|
[defaults]
|
|
display_skipped_hosts = no
|
|
host_key_checking = False
|
|
deprecation_warnings = False
|
|
interpreter_python = /usr/bin/python3
|
|
``` |