Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/tests_all_options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,14 @@
if ansible_facts['distribution_version'] | int > 7
else '/etc/yum.conf' }}"
state: absent
register: __ssh_nodocs
when:
- ansible_facts['os_family'] == "RedHat"

- name: Reinstall manual pages for openssh-clients on RHEL
ansible.builtin.command: "{{ pkg_mgr }} reinstall -y openssh-clients"
when:
- __ssh_nodocs is changed
- ansible_facts['os_family'] == "RedHat"
- not __ssh_is_ostree | bool
changed_when: true
Expand Down
Loading