check pid

This commit is contained in:
rootzoll
2018-09-05 20:06:48 +02:00
parent d4c850e5ef
commit bb2ced1f84

View File

@@ -24,7 +24,7 @@ echo ""
# check if lftp is running in background # check if lftp is running in background
pid=$(pgrep lftp | head -n 1) pid=$(pgrep lftp | head -n 1)
echo "${pid}" echo "${pid}"
if [ ${isRunning} -eq 0 ]; then if [ ${#pid} -eq 0 ]; then
echo "Starting lftp" echo "Starting lftp"
sudo mkdir ${targetDir} 2>/dev/null sudo mkdir ${targetDir} 2>/dev/null
sudo lftp -c "torrent -O ${targetDir} /home/admin/assets/${torrent}.torrent; bye" sudo lftp -c "torrent -O ${targetDir} /home/admin/assets/${torrent}.torrent; bye"