mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-08-04 07:37:20 +02:00
Update to 2021-12-13 19:00
This commit is contained in:
17
roles/ssh/tasks/install.yml
Normal file
17
roles/ssh/tasks/install.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
|
||||
- name: Install ssh components
|
||||
yum:
|
||||
name:
|
||||
- openssh-server
|
||||
- openssh-clients
|
||||
when: ansible_os_family == 'RedHat'
|
||||
tags: ssh
|
||||
|
||||
- name: Install ssh components
|
||||
apt:
|
||||
name:
|
||||
- openssh-server
|
||||
- openssh-client
|
||||
when: ansible_os_family == 'Debian'
|
||||
tags: ssh
|
Reference in New Issue
Block a user