mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 10:21:52 +01:00
9 lines
303 B
Bash
Executable File
9 lines
303 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
HOSTNAME=$(hostname)
|
|
|
|
echo restarting mempool backends | wall
|
|
echo "${HOSTNAME} restarted mempool backends" | /usr/local/bin/keybase chat send --nonblock --channel general mempool.devops
|
|
ps uaxw|grep 'dist/index'|grep -v grep|grep -v services|awk '{print $2}'|xargs -n 1 kill
|
|
|
|
exit 0
|