mirror of
https://github.com/dragonlock2/matthewtran.com.git
synced 2025-10-11 12:07:56 +00:00
8 lines
198 B
Bash
8 lines
198 B
Bash
#!/bin/sh
|
|
|
|
# TODO clean termination?
|
|
~/tari/minotari_node -n -b /data --grpc-enabled --mining-enabled --watch status &
|
|
trap 'echo "stopping tari node..."' SIGTERM SIGINT
|
|
tail -f /dev/null &
|
|
wait $!
|