fix python fake start

This commit is contained in:
WrobelXXL
2026-01-08 21:16:34 +01:00
parent 3ce9907dae
commit 1e9dc7c245

View File

@@ -0,0 +1,17 @@
#!/bin/bash
NAMES=(
systemd-udevd systemd-journald systemd-logind systemd-resolved systemd-networkd
polkitd dbus-daemon cron agetty
kworker/0:0 kworker/0:1 kworker/1:0 ksoftirqd/0 ksoftirqd/1
kthreadd rcu_sched rcu_bh rsyslogd NetworkManager
modprobe firewalld udisksd cupsd bluetoothd
avahi-daemon containerd dockerd rpcbind sshd syslogd ntpd
lvmetad systemctl systemd-tmpfiles systemd-random-seed
auditd irqbalance acctd mountd nfsd rpc.statd
mdadm smartd systemd-timesyncd systemd-hostnamed
)
for name in "${NAMES[@]}"; do
bash -c "exec -a $name python3 -c 'while True: pass'" &
done