mirror of
https://github.com/pi-farm/Docker-PXE-Server.git
synced 2026-06-16 20:07:13 +00:00
12 lines
296 B
Bash
12 lines
296 B
Bash
#!/command/with-contenv bash
|
|
|
|
echo "Starte PXE-relevante Dienste via systemctl-shim..."
|
|
|
|
# Hier alle Dienste auflisten, die der PXE-Server braucht
|
|
systemctl start rpcbind
|
|
systemctl start nfs-kernel-server
|
|
systemctl start dnsmasq
|
|
systemctl start lighttpd
|
|
systemctl start smbd
|
|
systemctl start nmbd
|