-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopyjob.sh
executable file
·168 lines (116 loc) · 2.58 KB
/
copyjob.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#!/bin/bash
### Version: 1.0.1
### Build date: 11.05.2021
### (C) 2021 by Dipl. Wirt.-Ing. Nick Herrmann
### This program is WITHOUT ANY WARRANTY; without even the implied warranty of
### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
###
###
script=$(readlink -f $0)
path=`dirname $script`
source $path/config.cf
### check
###
###
if [ ! -f "$copyfolder" ]; then
exit 0
fi
if [ ! -f "$copyfiles" ]; then
exit 0
fi
if [ ! -f "$excludefile" ]; then
exit 0
fi
if [ ! -e "$logpath" ]; then
mkdir /var/log/rsync
fi
if [ $host = "XXX" ]; then
printf "\n\n***********************************************\n\nAdd Your BackupServer (FQDN) to config.cf: "
read u_srv
sed -i 's/^host="XXX"/host="'"$u_srv"'"/' config.cf
source $path/config.cf
fi
### get exclude list
###
###
for i in `cat $excludefile`; do
### chomp - the bash way :-)
###
###
i="${i//$'\r'/$'\n'}"
exclude="$exclude --exclude=$i"
done
### get folders to copy
###
###
no=0
for i in `cat $copyfolder`; do
### chomp - the bash way :-)
###
###
i="${i//$'\r'/$'\n'}"
### get first character
###
###
f="${i:0:1}"
### check if last character is an /
###
###
if [ "$f" = "/" ]; then
if [[ $i =~ [^/]$ ]] ; then ## determines id ending slash in missing
echo "Missing ending slash for: $i"
exit
fi
fi
### cut last character ( cut / )
###
###
target="${i%?}"
local=$i
if [ "$f" = "/" ]; then
### ACTION
###
###
if [ "$active" = "true" ]; then
if [ "$target" != "" ] && [ "$local" != "" ] && [ -e $local ] && [ "$host" != "" ]; then
rsync -avz $exclude --delete $local $host:$target --info=ALL >> $logpath/rsync-$date.log
fi
else
echo "rsync -avz $exclude --delete $local $host:$target --info=COPY2,DEL2,NAME2,BACKUP2,REMOVE2,SKIP2 > $logpath/rsync-$date.log"
fi
fi
no=$((no+1))
done
### rsync for files only
###
###
no=$((no+1))
for i in `cat $copyfiles`; do
### chomp - the bash way :-)
###
###
i="${i//$'\r'/$'\n'}"
### get first character
###
###
f="${i:0:1}"
### cut last character ( cut / )
###
###
target=$i
local=$i
if [ "$f" = "/" ]; then
### ACTION
###
###
if [ "$active" = "true" ]; then
if [ "$target" != "" ] && [ "$local" != "" ] && [ -e $local ] && [ "$host" != "" ]; then
rsync -avz $exclude --delete $local $host:$target --info=ALL >> $logpath/rsync-$date.log
fi
else
echo "rsync -avz $exclude --delete $local $host:$target --info=COPY2,DEL2,NAME2,BACKUP2,REMOVE2,SKIP2 > $logpath/rsync-$date.log"
fi
fi
no=$((no+1))
done
exit 0