Skip to content

Commit 37294bd

Browse files
committed
Be more aggressive about killing an unresponsive service
1 parent aec4090 commit 37294bd

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

on-ping-service-failure.sh

+16-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
#
66

77
# Request a dump of running threads:
8-
touch $HOME/racket-pkg-website/signals/.dumpinfo
8+
dumprequestfile=$HOME/racket-pkg-website/signals/.dumpinfo
9+
touch $dumprequestfile
910

1011
# Wait a few seconds for the dump to complete:
1112
sleep 10
@@ -17,8 +18,20 @@ logarchive=$HOME/ping-failure-logs-$(date +%Y%m%d%H%M%S).tar.gz
1718
ls -tr | tail -n 10 | xargs tar -zcf $logarchive \
1819
)
1920

20-
# Restart the service using daemontools:
21-
svc -du $HOME/service/racket-pkg-website
21+
# Restart the service using daemontools.
22+
if [ -f $dumprequestfile ]
23+
then
24+
# If the `.dumpinfo` signal is still there after our sleep, then
25+
# the process is so far off the rails we shouldn't bother waiting
26+
# for it, so kill it hard.
27+
echo "Killing service hard and restarting it."
28+
svc -dku $HOME/service/racket-pkg-website
29+
else
30+
# Otherwise, it's at least partially awake, so try asking it
31+
# nicely.
32+
echo "Politely requesting service termination before restart."
33+
svc -du $HOME/service/racket-pkg-website
34+
fi
2235

2336
# Finally, complain out loud. We expect to be running in some kind of
2437
# cron-ish context, so the output we produce here will likely find its

0 commit comments

Comments
 (0)