mirror of
https://github.com/mempool/mempool.git
synced 2025-02-22 06:21:46 +01:00
8 lines
300 B
Bash
Executable file
8 lines
300 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.ops
|
|
ps uaxw|grep 'dist/index'|grep -v grep|grep -v services|awk '{print $2}'|xargs -n 1 kill
|
|
|
|
exit 0
|