Skip to content

Commit

Permalink
fix: remove unneeded jinja braces around condition
Browse files Browse the repository at this point in the history
This fixes a warning from Ansible about conditions having Jinja2
templating delimeters
  • Loading branch information
agaffney committed Sep 8, 2024
1 parent 38237b7 commit c247dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/cardano_node/tasks/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
cardano_node_docker_volumes: '{{ cardano_node_docker_volumes | default([]) + [item] }}'
loop:
- '{{ cardano_node_keys_dir }}:{{ cardano_node_keys_container_dir }}'
when: '{{ cardano_node_block_producer | bool }}'
when: cardano_node_block_producer | bool

- name: Create container
docker_container:
Expand Down

0 comments on commit c247dc1

Please sign in to comment.