Skip to content

Commit b9304b3

Browse files
committed
fixing missing quotes
1 parent 8a99068 commit b9304b3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

roles/geth/tasks/setup.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
name: "{{ geth_container_name }}-init"
2424
image: "{{ geth_container_image }}"
2525
detach: false
26-
auto_remove: {{ geth_init_autoremove_enabled }}
26+
auto_remove: "{{ geth_init_autoremove_enabled }}"
2727
restart_policy: "no"
2828
state: started
2929
volumes: "{{ geth_init_custom_network_container_volumes }}"

roles/nimbus/tasks/setup.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@
3131
image: "{{ nimbus_container_image }}"
3232
state: started
3333
detach: false
34-
auto_remove: {{ nimbus_checkpoint_autoremove_enabled }}
34+
auto_remove: "{{ nimbus_checkpoint_autoremove_enabled }}"
3535
restart_policy: "no"
3636
stop_timeout: "{{ nimbus_container_stop_timeout }}"
37-
volumes: {{ nimbus_container_volumes }}
37+
volumes: "{{ nimbus_container_volumes }}"
3838
env: "{{ nimbus_container_env }}"
3939
networks: "{{ nimbus_container_networks }}"
40-
command: {{ nimbus_checkpoint_container_command + nimbus_checkpoint_container_command_extra_args }}
40+
command: "{{ nimbus_checkpoint_container_command + nimbus_checkpoint_container_command_extra_args }}"
4141
user: "{{ nimbus_user_meta.uid }}"
4242

4343
- name: Run nimbus container

0 commit comments

Comments
 (0)