Migrate the users role

This commit is contained in:
Alexander Gorelyshev
2025-12-18 13:34:32 +04:00
parent cb18dcf6c0
commit 14e6bf12fd
18 changed files with 471 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
---
- 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