21 lines
651 B
YAML
21 lines
651 B
YAML
---
|
|
- name: Verify Ansible versions
|
|
hosts: all
|
|
tags: always
|
|
become: false
|
|
run_once: true
|
|
gather_facts: false
|
|
tasks:
|
|
- local_action: command ./versioncheck.py
|
|
changed_when: false
|
|
|
|
- name: Install certs, open ports, add SWAP
|
|
hosts: faucet-master
|
|
roles:
|
|
- { role: origin-certs, tags: origin-certs }
|
|
- { role: open-ports, tags: open-ports }
|
|
- { role: swap-file, tags: swap-file }
|
|
- { role: infra-role-geth, tags: infra-role-geth }
|
|
- { role: infra-role-geth-exporter, tags: infra-role-geth-exporter }
|
|
- { role: faucet-api, tags: faucet-api }
|