1
0
réplica de https://github.com/dockur/windows.git sincronizado 2026-06-12 13:19:34 +08:00

fix: Error logging for Samba daemon (#562)

Este cometimento está contido em:
Kroese
2024-06-04 15:55:28 +02:00
cometido por GitHub
ascendente 71b2c5c110
cometimento d0848b36cf
+8 -3
Ver ficheiro
@@ -75,7 +75,10 @@ fi
echo " force group = root"
} > "/etc/samba/smb.conf"
! smbd && smbd --debug-stdout
if ! smbd; then
error "Samba daemon failed to start!"
smbd -i --debug-stdout || true
fi
legacy=""
@@ -86,9 +89,11 @@ if [ -f "$STORAGE/windows.old" ]; then
fi
if [ -n "$legacy" ]; then
[[ "$DHCP" == [Yy1]* ]] && return 0
# Enable NetBIOS on Windows XP and lower
! nmbd && nmbd --debug-stdout
if ! nmbd; then
error "NetBIOS daemon failed to start!"
nmbd -i --debug-stdout || true
fi
else
# Enable Web Service Discovery on Vista and up
wsdd -i "$interface" -p -n "$hostname" &