commited current state

This commit is contained in:
DerLinkman
2026-05-08 21:27:10 +02:00
parent ffc1a6a8a5
commit 45ccd6a25f
43 changed files with 576 additions and 102 deletions
@@ -0,0 +1,8 @@
# {{ ansible_managed }}
# This file is managed by Ansible. Do not edit it manually.
{% for key_entry in admin_authorized_keys %}
{% if key_entry.comment is defined %}
# {{ key_entry.comment }}
{% endif %}
{{ key_entry.key }}
{% endfor %}
+8
View File
@@ -0,0 +1,8 @@
# {{ ansible_managed }}
# This file is managed by Ansible. Do not edit it manually.
XKBMODEL="pc105"
XKBLAYOUT="de"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
+42
View File
@@ -0,0 +1,42 @@
# {{ ansible_managed }}
# This file is managed by Ansible. Do not edit it manually.
# This is the ssh server system-wide configuration file.
# See sshd_config(5) for more information.
Port 22
AddressFamily any
ListenAddress 0.0.0.0
ListenAddress ::
# HostKeys
HostKey /etc/ssh/ssh_host_ed25519_key
HostKey /etc/ssh/ssh_host_rsa_key
# Authentication
PermitRootLogin no
PubkeyAuthentication yes
PasswordAuthentication no
PermitEmptyPasswords no
AuthenticationMethods publickey
MaxAuthTries 3
# SFTP
Subsystem sftp /usr/lib/openssh/sftp-server
# Security
X11Forwarding no
PermitTunnel no
AllowAgentForwarding no
AllowTcpForwarding yes
PermitOpen any
ClientAliveInterval 300
ClientAliveCountMax 2
Compression no
UseDNS no
# Logging
SyslogFacility AUTH
LogLevel VERBOSE
# Accept locale-related environment variables
AcceptEnv LANG LC_*
@@ -0,0 +1,5 @@
# Sudoers configuration for admin user
# {{ ansible_managed }}
# This file is managed by Ansible. Do not edit it manually.
admin ALL=(ALL) NOPASSWD:ALL