Skip to content

Commit f3969e7

Browse files
authored
fix: remove unneeded jinja braces around condition (#128)
This fixes a warning from Ansible about conditions having Jinja2 templating delimeters
1 parent 38237b7 commit f3969e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/cardano_node/tasks/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
cardano_node_docker_volumes: '{{ cardano_node_docker_volumes | default([]) + [item] }}'
3434
loop:
3535
- '{{ cardano_node_keys_dir }}:{{ cardano_node_keys_container_dir }}'
36-
when: '{{ cardano_node_block_producer | bool }}'
36+
when: cardano_node_block_producer | bool
3737

3838
- name: Create container
3939
docker_container:

0 commit comments

Comments
 (0)