first commit

This commit is contained in:
2025-09-22 23:12:44 +02:00
commit 1bc83085c6
36 changed files with 409 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
[Service]
ExecStart=
ExecStart=-/sbin/agetty -o '-p -f -- \\u' --noclear --autologin liveuser - $TERM

View File

@@ -0,0 +1 @@
/usr/lib/systemd/system/dbus.service

View File

@@ -0,0 +1 @@
../random-hostname.service

View File

@@ -0,0 +1 @@
../random-root-password.service

View File

@@ -0,0 +1 @@
/usr/lib/systemd/system/seatd.service

View File

@@ -0,0 +1,10 @@
[Unit]
Description=Set random hostname
Before=systemd-logind.service
[Service]
Type=oneshot
ExecStart=/bin/sh -c 'hostnamectl set-hostname "client-$(tr -dc a-z0-9 </dev/urandom | head -c6)"'
[Install]
WantedBy=multi-user.target

View File

@@ -0,0 +1,13 @@
[Unit]
Description=Set random password for user root
DefaultDependencies=no
After=local-fs.target
Before=getty@tty1.service
[Service]
Type=oneshot
ExecStart=/bin/sh -c 'echo "root:$(openssl rand -base64 48)" | chpasswd'
RemainAfterExit=yes
[Install]
WantedBy=multi-user.target