![Ricardo Carrillo Cruz](/assets/img/avatar_default.png)
In the playbooks logic, the facts are not used and they are a quite expensive operation, this speeds up execution.
8 lines
141 B
YAML
8 lines
141 B
YAML
---
|
|
# file: deploy_system_config.yml
|
|
- hosts: localhost
|
|
gather_facts: no
|
|
connection: local
|
|
roles:
|
|
- { role: deploy_system_config }
|