initial: no secrets

This commit is contained in:
2024-02-12 17:01:18 +01:00
commit cf9efd55b5
186 changed files with 8697 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
- name: SSH Listen Port 7000
lineinfile:
path: /etc/ssh/sshd_config
line: 'Port 7000'
notify:
- reload sshd
- name: SSH Listen Port 22 (safety)
lineinfile:
path: /etc/ssh/sshd_config
regexp: '^#Port 22'
line: 'Port 22'
notify:
- reload sshd