15 lines
444 B
YAML
15 lines
444 B
YAML
|
---
|
||
|
- name: Install OpenSSH server on Fedora and CentOS 8
|
||
|
when: ansible_distribution == "Fedora" or (ansible_distribution == "CentOS" and ansible_distribution_major_version == "8")
|
||
|
become: true
|
||
|
dnf:
|
||
|
name: openssh-server
|
||
|
state: latest
|
||
|
|
||
|
- name: Install OpenSSH server on CentOS 7
|
||
|
when: ansible_distribution == "CentOS" and ansible_distribution_major_version == "7"
|
||
|
become: true
|
||
|
yum:
|
||
|
name: openssh-server
|
||
|
state: latest
|