Files
gitlab-mirror/roles/users/tasks/openssh.yml
Alexander Gorelyshev 14e6bf12fd Migrate the users role
2025-12-18 13:34:32 +04:00

15 lines
390 B
YAML

---
- name: "OpenSSH | Ensure openssh client tools are installed"
when: ansible_os_family == "Debian"
ansible.builtin.apt:
name: openssh-client
state: present
cache_valid_time: 3000
- name: "OpenSSH | Ensure openssh client tools are installed"
when: ansible_os_family == "RedHat"
ansible.builtin.dnf:
name: openssh-clients
state: present
update_cache: true