Skip to content

Commit

Permalink
Merge pull request #426 from igorribeiroduarte/fix_ssl_condition
Browse files Browse the repository at this point in the history
ansible-scylla-node: Remove invalid conditions in ssl.yml
  • Loading branch information
tarzanek authored Nov 29, 2024
2 parents 7b2cde9 + bd40c3a commit e5e72a2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ansible-scylla-node/tasks/ssl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
register: _node_crt
loop: "{{ groups['scylla'] }}"
delegate_to: localhost
when: _node_crt is not defined or _node_crt.stat.exists == True
run_once: true

- name: For every node, check if key file exists
Expand All @@ -17,7 +16,6 @@
register: _node_key
loop: "{{ groups['scylla'] }}"
delegate_to: localhost
when: _node_key is not defined or _node_key.stat.exists == True
run_once: true

- name: Set existence of crt and key as a single fact
Expand Down

0 comments on commit e5e72a2

Please sign in to comment.