2025-05-07 03:55:16 -07:00

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 $!