mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-11 06:15:58 +00:00
Jakub Sokołowski
a5a950bb91
See: https://github.com/status-im/nimbus-private/pull/9 Signed-off-by: Jakub Sokołowski <jakub@status.im>
16 lines
454 B
YAML
16 lines
454 B
YAML
---
|
|
- name: Pre-playbook checks
|
|
hosts: localhost
|
|
tasks:
|
|
- name: 'Verify Ansible version is 2.8 or newer'
|
|
assert:
|
|
that: 'ansible_version.full is version_compare("2.8", ">=")'
|
|
msg: 'Your Ansible version is lower than 2.8. Upgrade it.'
|
|
|
|
- name: Configure network mainnet bootnodes
|
|
become: true
|
|
hosts:
|
|
- nimbus-mainnet-small
|
|
roles:
|
|
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
|