Skip to content

Commit

Permalink
fix(blockscout): add tags on playbook
Browse files Browse the repository at this point in the history
  • Loading branch information
servalD committed Apr 9, 2024
1 parent 88b6bdf commit dca0791
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions playbooks/install_blockscout_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@
become: true
roles:
- role: geerlingguy.docker
tags:
- install
- blockscout
- install-blockscout
- role: ash.avalanche.evm.blockscout
2 changes: 2 additions & 0 deletions roles/evm/blockscout/handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
service:
name: blockscout
state: restarted
when:
- skip_handlers | default("false") == "false"
14 changes: 9 additions & 5 deletions roles/evm/blockscout/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,18 @@
# Copyright (c) 2022-2024, E36 Knots
---
- name: Configure Blockscout Docker
include_tasks: config-blockscout.yml
import_tasks: config-blockscout.yml
tags:
- config
- blockscout
- config-blockscout

- name: Restart Blockscout Docker if needed
meta: flush_handlers
tags:
- Restart
- blockscout
- Restart-blockscout

- name: Start Blockscout Docker
include_tasks: start-blockscout.yml
tags:
- start
- blockscout
- start-blockscout

0 comments on commit dca0791

Please sign in to comment.