Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 4575229

Browse files
committed
update besu validators and boot
1 parent a910fdb commit 4575229

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
- name: Install Bootnode
33
import_tasks: "install.yaml"
4-
when: install
4+
when: install | default(False) | bool
55

66
- name: Update Bootnode
77
import_tasks: "update.yaml"
8+
when: update | default(False) | bool
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
- name: Install Validator Node
33
import_tasks: "install.yaml"
4-
when: install
4+
when: install | default(False) | bool
55

66
- name: Update Validator Node
7-
import_tasks: "update.yaml"
7+
import_tasks: "update.yaml"
8+
when: update | default(False) | bool

site-lacchain-update-bootnode.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
- hosts: bootnodes
22
gather_facts: yes
33
become: yes
4+
vars:
5+
update: true
46
roles:
57
- lacchain-bootnode

site-lacchain-update-validator.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
- hosts: validators
22
gather_facts: yes
33
become: yes
4+
vars:
5+
update: true
46
roles:
57
- lacchain-validator-node

0 commit comments

Comments
 (0)