fix: increase timeout when stopping samba

This commit is contained in:
ljm42
2025-09-23 21:04:43 -07:00
parent 5a222487e4
commit a6e966c673
+1 -1
View File
@@ -39,7 +39,7 @@ samba_running(){
samba_waitfor_shutdown(){
local i
for i in {1..5}; do
for i in {1..10}; do
if ! samba_running; then break; fi
sleep 1
done