Skip to content

Commit 0c174cd

Browse files
committed
Fix conditional in edpm_ssh_known_hosts
Signed-off-by: rabi <ramishra@redhat.com>
1 parent ab07615 commit 0c174cd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • roles/edpm_ssh_known_hosts/tasks

roles/edpm_ssh_known_hosts/tasks/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848

4949
- name: Gather facts if they don't exist
5050
when:
51-
- ("'ssh_host_key_rsa_public' not in ansible_facts") or
52-
("'ssh_host_key_ed25519_public' not in ansible_facts") or
53-
("'ssh_host_key_ecdsa_public' not in ansible_facts")
51+
- ('ssh_host_key_rsa_public' not in ansible_facts) or
52+
('ssh_host_key_ed25519_public' not in ansible_facts) or
53+
('ssh_host_key_ecdsa_public' not in ansible_facts)
5454
ansible.builtin.setup:
5555
gather_subset:
5656
- "!all"

0 commit comments

Comments
 (0)