nomos-node/testnet/scripts/run_nomos_bot.sh

10 lines
244 B
Bash
Raw Normal View History

2024-01-29 09:26:54 +00:00
#!/bin/sh
echo "I am a container ${HOSTNAME} bot"
while true
do
/usr/bin/nomos-cli chat --author nomos-ghost --message "$(date +%H:%M:%S) ~ ping" --network-config /etc/nomos/cli_config.yaml --node http://bootstrap:18080
2024-01-29 09:26:54 +00:00
sleep 10
done