File tree 1 file changed +16
-3
lines changed
1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 5
5
#
6
6
7
7
# 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
9
10
10
11
# Wait a few seconds for the dump to complete:
11
12
sleep 10
@@ -17,8 +18,20 @@ logarchive=$HOME/ping-failure-logs-$(date +%Y%m%d%H%M%S).tar.gz
17
18
ls -tr | tail -n 10 | xargs tar -zcf $logarchive \
18
19
)
19
20
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
22
35
23
36
# Finally, complain out loud. We expect to be running in some kind of
24
37
# cron-ish context, so the output we produce here will likely find its
You can’t perform that action at this time.
0 commit comments