Add things

This commit is contained in:
Uumas
2021-03-19 23:02:08 +02:00
parent c5bd95bebe
commit 10d835e82c
8 changed files with 91 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
---
- name: restart ssh
systemd:
name: ssh
state: restarted

28
roles/ssh/tasks/main.yml Normal file
View File

@@ -0,0 +1,28 @@
---
- name: Disable SSH root login without password
lineinfile:
path: /etc/ssh/sshd_config
regexp: '^#?PermitRootLogin .*$'
line: "PermitRootLogin prohibit-password"
state: present
validate: '/usr/sbin/sshd -t -f %s'
notify: restart ssh
- name: Disable PasswordAuthentication
lineinfile:
path: /etc/ssh/sshd_config
regexp: '^#PasswordAuthentication .*$'
line: "PasswordAuthentication no"
state: present
validate: '/usr/sbin/sshd -t -f %s'
notify: restart ssh
- name: Disable X11 forwarding
lineinfile:
path: /etc/ssh/sshd_config
regexp: '^#?X11Forwarding .*$'
line: "X11Forwarding no"
state: present
validate: '/usr/sbin/sshd -t -f %s'
notify: restart ssh