-
Notifications
You must be signed in to change notification settings - Fork 172
/
rclone-security-sync-recent.sh
100 lines (91 loc) · 4.25 KB
/
rclone-security-sync-recent.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/bin/bash
ver="7.1"
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # get cur dir of this script
progName=$(basename -- "$0")
cd $DIR
echo "$progName $ver written by Claude Pageau"
# If lockCheckFile=True then script checks pi-timolo.sync file exists
# Otherwise no sync is attempted. This can be useful for
# Low Bandwidth connections with low frequency of motion tracking events
# Customize rclone sync variables Below
# ---------------------------------------
lockFileCheck=false # true= Checks for pi-timolo.sync file. false = No Check (case sensitive)
rcloneName="gdmedia" # Name of Remote Storage Service
syncRoot="/home/pi/speed-camera" # Root Folder to Start
localDir="media/recent/security" # Source Folder on Local
remoteDir="scam/recent" # Destination Folder on Remote
rcloneParam="sync -L" # rclone option to perform Eg sync, copy, move
# IMPORTANT: sync will make remoteDir identical to localDir
# so remoteDir Files that do not exist on localDir will be Deleted.
# ---------------------------------------
# Display Users Settings
echo "----------- SETTINGS -------------
lockFileCheck : $lockFileCheck
rcloneName : $rcloneName
syncRoot : $syncRoot
localDir : $localDir
remoteDir : $remoteDir
rcloneParam : $rcloneParam (Options are sync, copy or move)
---------------------------------"
lockFilePath="/home/pi/pi-timolo/pi-timolo.sync"
cd $syncRoot # Change to local rclone root folder
if pidof -o %PPID -x "$progName"; then
echo "WARN - $progName Already Running. Only One Allowed."
else
if [ -f /usr/bin/rclone ]; then # Check if rclone installed
rclone version # Display rclone version
if [ ! -d "$localDir" ] ; then # Check if Local sync Folder Exists
echo "---------------------------------------------------"
echo "ERROR : localDir=$localDir Does Not Exist."
echo " Please Investigate Bye ..."
exit 1
fi
/usr/bin/rclone listremotes | grep "$rcloneName" # Check if remote storage name exists
if [ $? == 0 ]; then # Check if listremotes found anything
if $lockFileCheck ; then
if [ -f "$lockFilePath" ] ; then # Check if sync lock file exists
echo "INFO : Found Lock File $lockFilePath"
echo " rclone $rcloneParam is Required."
else
echo "INFO : Lock File Not Found: $lockFilePath"
echo " rclone $rcloneParam is Not Required."
echo "Exiting $progName ver $ver"
exit 0
fi
fi
echo "INFO : /usr/bin/rclone $rcloneParam -v $localDir $rcloneName:$remoteDir"
echo " One Moment Please ..."
/usr/bin/rclone $rcloneParam -v $localDir $rcloneName:$remoteDir
if [ ! $? -eq 0 ]; then
echo "---------------------------------------------------"
echo "ERROR : rclone $rcloneParam Failed."
echo " Review rclone %rcloneParam Output for Possible Cause."
else
echo "INFO : rclone $rcloneParam Successful ..."
if $lockFileCheck ; then
if [ -f "$lockFilePath" ] ; then
echo "INFO : Delete File $lockFilePath"
rm -f $lockFilePath
fi
fi
fi
else
echo "---------------------------------------------------"
echo "ERROR : rcloneName=$rcloneName Does not Exist"
echo "INFO : List Remote Storage Names that are Setup."
echo "rclone listremotes"
echo "-------------------"
rclone listremotes
echo "--------------------"
echo "INFO : If listremotes Listing is Empty, Read pi-timolo Wiki"
echo " How to Setup a Remote Storage Name."
fi
else
echo "ERROR : /usr/bin/rclone Not Installed."
echo " You Must Install and Configure rclone"
echo " See pi-timolo Wiki for Details"
fi
fi
echo "---------------------------------------------------"
echo "Exiting $progName ver $ver
Bye ..."