Don't block on starting the service after sleep
Build / build (push) Has been cancelled

This commit is contained in:
2026-06-06 16:09:04 -04:00
parent bdcb3d1d20
commit c0b566fc70
+1 -1
View File
@@ -9,6 +9,6 @@ if [ "$1" = "post" ]; then
# hook only needs to request the start. # hook only needs to request the start.
loginctl list-users --no-legend 2>/dev/null | while read uid name rest; do loginctl list-users --no-legend 2>/dev/null | while read uid name rest; do
[ "$uid" -ge 1000 ] 2>/dev/null || continue [ "$uid" -ge 1000 ] 2>/dev/null || continue
su "$name" -c "XDG_RUNTIME_DIR=/run/user/$uid systemctl --user start converge-wake.service" 2>/dev/null || true su "$name" -c "XDG_RUNTIME_DIR=/run/user/$uid systemctl --user --no-block start converge-wake.service" 2>/dev/null || true
done done
fi fi