mynode/rootfs/standard/usr/bin/mynode_torrent_check.sh
2019-07-24 21:51:12 -05:00

45 lines
1.2 KiB
Bash
Executable File

#!/bin/bash
source /usr/share/mynode/mynode_config.sh
echo "Waiting until QuickSync is complete..."
while [ ! -f "$QUICKSYNC_COMPLETE_FILE" ]; do
sleep 1m
done
if [ ! -f $UPLOADER_FILE ]; then
echo "Quicksync Complete! Waiting until Bitcoin Sync is complete..."
while [ ! -f "$BITCOIN_SYNCED_FILE" ]; do
sleep 1m
done
echo "Bitcoin Sync Complete! Checking if there is a new torrent available..."
sleep 1d
fi
while true; do
# Wait a while... we don't want everyone starting on a new torrent at once
if [ -f $UPLOADER_FILE ]; then
echo "Marked as uploader, checking for new torrent in 1 day..."
sleep 1d
else
sleep 10d
fi
# Download current torrent
rm -rf /tmp/blockchain_temp.torrent
wget -O /tmp/blockchain_temp.torrent $QUICKSYNC_TORRENT_URL
if [ -f /tmp/blockchain_temp.torrent ]; then
NEW_TORRENT=0
cmp --silent /tmp/blockchain_temp.torrent $QUICKSYNC_DIR/blockchain.torrent || NEW_TORRENT=1
if [ $NEW_TORRENT -eq 1 ]; then
# Reboot to restart and get new torrent
reboot
else
echo "Torrent has not changed."
fi
else
echo "Torrent download failed...."
fi
done
# Should never exit
exit 99