Configure SSH and add debsums

This commit is contained in:
Alexandre Iooss 2019-03-16 22:06:50 +01:00
parent c38c1aedc1
commit 724db5f8c8
1 changed files with 16 additions and 3 deletions

View File

@ -28,9 +28,14 @@
- name: Prohibit root SSH with password
lineinfile:
dest: /etc/ssh/sshd_config
regexp: '^PermitRootLogin'
insertafter: '^#PermitRootLogin'
line: 'PermitRootLogin prohibit-password'
regexp: '^{{ item.0 }}'
insertafter: '^#{{ item.0 }}'
line: '{{ item.0 }} {{ item.1 }}'
loop:
- ["PermitRootLogin", "prohibit-password"]
- ["AllowAgentForwarding", "no"]
- ["X11Forwarding", "no"]
- ["TCPKeepAlive", "no"]
notify: Restart sshd service
# See banned client with `fail2ban-client status sshd`
@ -47,3 +52,11 @@
dest: /etc/fail2ban/jail.d/local.conf
mode: 0644
notify: Restart fail2ban service
# See altered packages and configurations with `debsums -ca`
- name: Install debsums
apt:
name: debsums
register: apt_result
retries: 3
until: apt_result is succeeded