From 67198d102133fafe9888b784aa7de0edd7315f0c Mon Sep 17 00:00:00 2001 From: Tony Blyler Date: Sun, 1 Mar 2015 00:33:53 -0500 Subject: [PATCH] Echo that a download is being started --- hoarder.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hoarder.sh b/hoarder.sh index fcba5d4..7dd3093 100755 --- a/hoarder.sh +++ b/hoarder.sh @@ -344,6 +344,7 @@ while true; do fi # start the download and record the PID + echo "Started download for ${torrent_name} (${TORRENT_QUEUE[$torrent_hash]})" rsync -hrvP --inplace "${SSH_USER}@${SSH_SERVER}:\"${SSH_SERVER_DOWNLOAD_PATH}/${torrent_name}"\" "${TORRENT_TMP_DOWNLOAD}/" > /dev/null & RUNNING_RSYNCS[${torrent_hash}]=$! fi