mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 09:52:14 +01:00
30 lines
563 B
Bash
Executable File
30 lines
563 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
# kill actual node backends
|
|
killall node 2>/dev/null
|
|
|
|
# kill "while true" loops
|
|
killall sh 2>/dev/null
|
|
|
|
# kill unfurler chrome instances
|
|
killall chrome 2>/dev/null
|
|
|
|
# kill xorg
|
|
killall xinit Xorg 2>/dev/null
|
|
|
|
# kill dbus
|
|
killall dbus-daemon 2>/dev/null
|
|
|
|
# kill nginx cache warmer scripts
|
|
for pid in `ps uaxww|grep warmer|grep zsh|awk '{print $2}'`;do
|
|
kill $pid
|
|
done
|
|
|
|
# kill nginx cache heater scripts
|
|
for pid in `ps uaxww|grep heater|grep zsh|awk '{print $2}'`;do
|
|
kill $pid
|
|
done
|
|
|
|
# always exit successfully despite above errors
|
|
exit 0
|