biiiiig update !

This commit is contained in:
Ludovic Cartier
2026-02-20 15:46:38 +01:00
parent ecda4ecafd
commit 717c98fa6c
12 changed files with 221 additions and 25 deletions
+5
View File
@@ -0,0 +1,5 @@
$nrconf{override_rc} = {
{% for item in needrestart_exclude %}
'{{ item }}' => 0,
{% endfor %}
};
+5
View File
@@ -0,0 +1,5 @@
{% if ssh_root_authorized_keys is defined %}
{% for key in ssh_root_authorized_keys %}
{{ key }}
{% endfor %}
{% endif %}
+8
View File
@@ -0,0 +1,8 @@
PermitRootLogin no
{% if ssh_root_authorized_ips is defined %}
{% for ip in ssh_root_authorized_ips %}
Match Address {{ ip }}
PermitRootLogin prohibit-password
{% endfor %}
{% endif %}