Skip to content

Commit a5ff269

Browse files
authored
Merge pull request #29 from cloudstruct/release/v1.6.0-1
fix: Invalid handling of unset config value
2 parents 7345e49 + 54d64c2 commit a5ff269

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ansible/roles/rocketpool/tasks/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ansible.builtin.set_fact:
44
ROCKETPOOL_CLI_CONFIG: "{{ ROCKETPOOL_CLI_CONFIG | default('')
55
+ '--' + option.name
6-
+ (' ' if option.value != 'false' else '=')
6+
+ (' ' if (option.value|default('')) != 'false' else '=')
77
+ (option.value | default('')) + ' '
88
}}"
99
loop: "{{ rocketpool.config }}"

0 commit comments

Comments
 (0)