From 5c37c81859bd835a11892c32fa128ad82ada086c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Thu, 10 Mar 2022 18:48:36 +0100 Subject: [PATCH] ansible/main: run bridge setup first MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ansible/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ansible/main.yml b/ansible/main.yml index db1949c..098961e 100644 --- a/ansible/main.yml +++ b/ansible/main.yml @@ -9,6 +9,13 @@ - local_action: command ./versioncheck.py changed_when: false +- name: Configure Waku V1-V2 bridge + hosts: bridge + roles: + - { role: open-ports, tags: open-ports } + - { role: swap-file, tags: swap-file } + - { role: nim-waku-bridge, tags: nim-waku-bridge } + - name: Configure Waku Nodes hosts: status roles: @@ -16,10 +23,3 @@ - { role: swap-file, tags: swap-file } - { role: nim-waku, tags: nim-waku } - { role: waku-peers, tags: waku-peers } - -- name: Configure Waku V1-V2 bridge - hosts: bridge - roles: - - { role: open-ports, tags: open-ports } - - { role: swap-file, tags: swap-file } - - { role: nim-waku-bridge, tags: nim-waku-bridge }