mirror of
https://github.com/mempool/mempool.git
synced 2025-02-22 22:25:34 +01:00
7 lines
235 B
Bash
Executable file
7 lines
235 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
echo restarting all mempool backends | wall
|
|
echo restarting all mempool backends | logger -t mempool -p local7.notice
|
|
ps uaxw|grep 'dist/index'|grep -v grep|grep -v services|awk '{print $2}'|xargs -n 1 kill
|
|
|
|
exit 0
|