franta-hg@0
|
1 |
#!/bin/bash
|
franta-hg@0
|
2 |
|
franta-hg@0
|
3 |
# VCS Backup
|
franta-hg@0
|
4 |
# Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info)
|
franta-hg@0
|
5 |
#
|
franta-hg@0
|
6 |
# This program is free software: you can redistribute it and/or modify
|
franta-hg@0
|
7 |
# it under the terms of the GNU General Public License as published by
|
franta-hg@0
|
8 |
# the Free Software Foundation, either version 3 of the License, or
|
franta-hg@0
|
9 |
# (at your option) any later version.
|
franta-hg@0
|
10 |
#
|
franta-hg@0
|
11 |
# This program is distributed in the hope that it will be useful,
|
franta-hg@0
|
12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
franta-hg@0
|
13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
franta-hg@0
|
14 |
# GNU General Public License for more details.
|
franta-hg@0
|
15 |
#
|
franta-hg@0
|
16 |
# You should have received a copy of the GNU General Public License
|
franta-hg@0
|
17 |
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
franta-hg@0
|
18 |
|
franta-hg@0
|
19 |
|
franta-hg@13
|
20 |
# VCS Backup is a configuration for setting up a version control system mirrors.
|
franta-hg@13
|
21 |
# Currently Mercurial (Hg) and Git are supported.
|
franta-hg@13
|
22 |
# Features:
|
franta-hg@13
|
23 |
# - mirrors remote repositories
|
franta-hg@13
|
24 |
# - creates Btrfs subvolume for each repository
|
franta-hg@13
|
25 |
# - does periodic pull to keep mirrors up to date
|
franta-hg@13
|
26 |
# - does periodic Btrfs snapshot to keep history (git push --force done on the remote repository will lead to modifications or deletions in our current mirror, but previous versions will be kept in the snapshots)
|
franta-hg@13
|
27 |
# - provides web interface for remote clonning of our mirrors (see systemd and etc folders)
|
franta-hg@13
|
28 |
# - can be controlled over SSH by a sane person / owner of the system
|
franta-hg@13
|
29 |
# - provides reports in the recfile format (to be processed using GNU Recutils or Relational pipes):
|
franta-hg@13
|
30 |
# - list of repositories/mirrors
|
franta-hg@13
|
31 |
# - results of pull operations
|
franta-hg@13
|
32 |
|
franta-hg@13
|
33 |
|
franta-hg@13
|
34 |
# This is an asynchronous message-driven shell script that runs distributed across two machines and four user accounts. You have been warned :-)
|
franta-hg@14
|
35 |
|
franta-hg@14
|
36 |
|
franta-hg@16
|
37 |
# Server-side configuration: / loadServerConfigFile()
|
franta-hg@0
|
38 |
VCS_BACKUP_DATA_DIR="/mnt/data";
|
franta-hg@0
|
39 |
VCS_BACKUP_CURRENT_DIR="$VCS_BACKUP_DATA_DIR/current";
|
franta-hg@2
|
40 |
VCS_BACKUP_PUBLIC_DIR="$VCS_BACKUP_DATA_DIR/public";
|
franta-hg@0
|
41 |
VCS_BACKUP_CONFIG_DIR="$VCS_BACKUP_DATA_DIR/config";
|
franta-hg@0
|
42 |
VCS_BACKUP_SNAPSHOT_DIR="$VCS_BACKUP_DATA_DIR/snapshot";
|
franta-hg@0
|
43 |
VCS_BACKUP_SUBVOLUME_SOCKET="/run/vcs-backup-subvolume";
|
franta-hg@7
|
44 |
VCS_BACKUP_CLONE_SOCKET="/run/vcs-backup-clone/socket"; # the directory will be writable by ${VCS_BACKUP_USER}
|
franta-hg@3
|
45 |
VCS_BACKUP_CLONE_CALLBACK_SOCKET="clone-callback";
|
franta-hg@0
|
46 |
VCS_BACKUP_USER="vcs-backup";
|
franta-hg@0
|
47 |
VCS_BACKUP_MANAGER="vcs-backup-manager";
|
franta-hg@0
|
48 |
|
franta-hg@16
|
49 |
# Client-side configuration: / see loadClientConfigFile()
|
franta-hg@16
|
50 |
VCS_BACKUP_SERVER="$VCS_BACKUP_MANAGER@localhost";
|
franta-hg@16
|
51 |
VCS_BACKUP_SSH_COMMAND=(ssh "$VCS_BACKUP_SERVER");
|
franta-hg@16
|
52 |
|
franta-hg@0
|
53 |
# Installation – check and do it by hand:
|
franta-hg@0
|
54 |
# There should be already mounted Btrfs at $VCS_BACKUP_DATA_DIR
|
franta-hg@0
|
55 |
installInstructions() {
|
franta-hg@0
|
56 |
cp vcs-backup.sh /usr/local/bin/
|
franta-hg@0
|
57 |
adduser --disabled-password "$VCS_BACKUP"
|
franta-hg@0
|
58 |
adduser --disabled-password "$VCS_BACKUP_MANAGER"
|
franta-hg@0
|
59 |
|
franta-hg@0
|
60 |
mkdir "$VCS_BACKUP_CURRENT_DIR";
|
franta-hg@0
|
61 |
mkdir "$VCS_BACKUP_CONFIG_DIR";
|
franta-hg@0
|
62 |
mkdir "$VCS_BACKUP_SNAPSHOT_DIR";
|
franta-hg@5
|
63 |
mkdir "$(dirname VCS_BACKUP_CLONE_SOCKET)"
|
franta-hg@0
|
64 |
|
franta-hg@5
|
65 |
chown "${VCS_BACKUP_USER}:${VCS_BACKUP_USER}" "$(dirname VCS_BACKUP_CLONE_SOCKET)"
|
franta-hg@0
|
66 |
chown "${VCS_BACKUP_MANAGER}:${VCS_BACKUP_MANAGER}" "$VCS_BACKUP_CONFIG_DIR"
|
franta-hg@0
|
67 |
}
|
franta-hg@0
|
68 |
|
franta-hg@0
|
69 |
|
franta-hg@0
|
70 |
# --- Private functions: ---------------------------------------------------------------------------
|
franta-hg@0
|
71 |
|
franta-hg@0
|
72 |
# Environment: all
|
franta-hg@0
|
73 |
# $1 = VCS type: hg, git
|
franta-hg@0
|
74 |
# $2 = URL
|
franta-hg@0
|
75 |
isValidTypeAndURL() { ([[ "$1" == "hg" || "$1" == "git" ]]) && [[ $(echo "$2" | wc -l) == 1 ]] && [[ $(echo "$2" | grep -E '^(http|https|ssh)://([a-zA-Z0-9_-][a-zA-Z0-9_-.]*/?)+$' | wc -l) == 1 ]]; }
|
franta-hg@0
|
76 |
|
franta-hg@0
|
77 |
# Environment: all
|
franta-hg@0
|
78 |
# $1 = path to the config file
|
franta-hg@5
|
79 |
loadConfigFile() { if [ -f "$1" ]; then . "$1"; fi }
|
franta-hg@16
|
80 |
loadClientConfigFile() { loadConfigFile ~/.config/vcs-backup/client.cfg; }
|
franta-hg@16
|
81 |
loadServerConfigFile() { loadConfigFile "/etc/vcs-backup/server.cfg"; }
|
franta-hg@0
|
82 |
|
franta-hg@0
|
83 |
# Environment: server
|
franta-hg@0
|
84 |
# $1 = URL
|
franta-hg@0
|
85 |
urlToRelativeDirectoryPath() {
|
franta-hg@0
|
86 |
echo "$1" | sed -E 's@^[^:]+://@@g';
|
franta-hg@0
|
87 |
}
|
franta-hg@0
|
88 |
|
franta-hg@9
|
89 |
# Environment: all
|
franta-hg@9
|
90 |
# $1 = optional value (if missing, reads STDIN)
|
franta-hg@9
|
91 |
escapeRecfileValue() { if [[ $# = 0 ]]; then awk '{ if (NR > 1) { printf "+ " } print $_ }'; else echo "${@}" | ${FUNCNAME[0]}; fi }
|
franta-hg@9
|
92 |
|
franta-hg@9
|
93 |
# Environment: all
|
franta-hg@9
|
94 |
# $1 = key
|
franta-hg@9
|
95 |
# $2 = value
|
franta-hg@9
|
96 |
printRecfileKeyValue() { echo -n "$1: "; escapeRecfileValue "$2"; }
|
franta-hg@9
|
97 |
|
franta-hg@0
|
98 |
# --- Public interface functions: ------------------------------------------------------------------
|
franta-hg@0
|
99 |
|
franta-hg@0
|
100 |
# Environment: client
|
franta-hg@0
|
101 |
# $1 = VCS type: hg, git
|
franta-hg@0
|
102 |
# $2 = URL
|
franta-hg@2
|
103 |
# $3 = "public" or "private" (default), whether the repository should be available through the public web interface
|
franta-hg@10
|
104 |
# $4 = "clone" (optional), if present, will also clone the backup locally
|
franta-hg@0
|
105 |
vcs_backup_public_clientSubmitBackupRequest() {
|
franta-hg@0
|
106 |
if isValidTypeAndURL "$1" "$2"; then
|
franta-hg@3
|
107 |
${VCS_BACKUP_SSH_COMMAND[@]} vcs-backup.sh serverSubmitBackupRequest "$1" "$2" "$3" "$4"
|
franta-hg@3
|
108 |
if [[ "$4" == "clone" ]]; then
|
franta-hg@10
|
109 |
if [[ "$1" == "hg" ]]; then hg clone "ssh://${VCS_BACKUP_SERVER}/$VCS_BACKUP_CURRENT_DIR/$1/$(urlToRelativeDirectoryPath $2)";
|
franta-hg@10
|
110 |
elif [[ "$1" == "git" ]]; then git clone "ssh://${VCS_BACKUP_SERVER}/$VCS_BACKUP_CURRENT_DIR/$1/$(urlToRelativeDirectoryPath $2)";
|
franta-hg@3
|
111 |
fi
|
franta-hg@3
|
112 |
fi
|
franta-hg@0
|
113 |
else
|
franta-hg@0
|
114 |
echo "Unsupported VCS type: '$1' or URL: '$2'" >&2;
|
franta-hg@0
|
115 |
fi
|
franta-hg@0
|
116 |
}
|
franta-hg@0
|
117 |
|
franta-hg@0
|
118 |
# Environment: server
|
franta-hg@5
|
119 |
# User: $VCS_BACKUP_MANAGER
|
franta-hg@2
|
120 |
# has same parameters as clientSubmitBackupRequest (see above)
|
franta-hg@0
|
121 |
vcs_backup_public_serverSubmitBackupRequest() {
|
franta-hg@0
|
122 |
if isValidTypeAndURL "$1" "$2"; then
|
franta-hg@0
|
123 |
relativePath=$1/$(urlToRelativeDirectoryPath "$2");
|
franta-hg@0
|
124 |
absolutePath="$VCS_BACKUP_CONFIG_DIR/$relativePath";
|
franta-hg@15
|
125 |
# TODO: stop if directory already exists / only add public link?
|
franta-hg@0
|
126 |
mkdir -p "$absolutePath";
|
franta-hg@0
|
127 |
echo "$2" > "$absolutePath/url.txt"
|
franta-hg@0
|
128 |
echo "submited" > "$absolutePath/state.txt"
|
franta-hg@0
|
129 |
setfacl -m u:${VCS_BACKUP_USER}:r "$absolutePath/url.txt"
|
franta-hg@0
|
130 |
setfacl -m u:${VCS_BACKUP_USER}:rw "$absolutePath/state.txt"
|
franta-hg@3
|
131 |
|
franta-hg@2
|
132 |
if [[ "$3" == "public" ]]; then
|
franta-hg@2
|
133 |
cd "$VCS_BACKUP_PUBLIC_DIR";
|
franta-hg@2
|
134 |
mkdir -p "$(dirname $relativePath)";
|
franta-hg@2
|
135 |
ln -rs "../current/$relativePath" "$(dirname $relativePath)";
|
franta-hg@2
|
136 |
fi
|
franta-hg@3
|
137 |
|
franta-hg@3
|
138 |
if [[ "$4" == "clone" ]]; then
|
franta-hg@12
|
139 |
callBackSocket=$absolutePath/${VCS_BACKUP_CLONE_CALLBACK_SOCKET}
|
franta-hg@12
|
140 |
socat -u "unix-recvfrom:$callBackSocket,mode=777" - | while read m; do # TODO: ,group=${VCS_BACKUP_USER} and no 777 ?
|
franta-hg@12
|
141 |
echo "Message from the service: $m";
|
franta-hg@12
|
142 |
done &
|
franta-hg@12
|
143 |
callBackPID=$!;
|
franta-hg@12
|
144 |
fi
|
franta-hg@12
|
145 |
|
franta-hg@12
|
146 |
echo "$relativePath" | socat -u - unix-send:${VCS_BACKUP_SUBVOLUME_SOCKET};
|
franta-hg@12
|
147 |
|
franta-hg@12
|
148 |
if [[ "$4" == "clone" ]]; then
|
franta-hg@12
|
149 |
echo "Waiting for a message from the service on $callBackSocket (PID $callBackPID)";
|
franta-hg@12
|
150 |
wait -n $callBackPID;
|
franta-hg@3
|
151 |
fi
|
franta-hg@0
|
152 |
else
|
franta-hg@0
|
153 |
echo "Unsupported VCS type: '$1' or URL: '$2'" >&2;
|
franta-hg@0
|
154 |
fi
|
franta-hg@0
|
155 |
}
|
franta-hg@0
|
156 |
|
franta-hg@0
|
157 |
# Environment: server
|
franta-hg@5
|
158 |
# User: root
|
franta-hg@0
|
159 |
# Should be started as a systemd/init service.
|
franta-hg@0
|
160 |
# - reads messages from from the subvolume socket – message contains the relative directory path
|
franta-hg@0
|
161 |
# - creates a subvolume for given repository + necesary parent directories
|
franta-hg@0
|
162 |
# - sends a message to the clone service → start cloning into the created subvolume
|
franta-hg@0
|
163 |
vcs_backup_public_serverStartSubvolumeService() {
|
franta-hg@0
|
164 |
socat -u "unix-recv:${VCS_BACKUP_SUBVOLUME_SOCKET},group=${VCS_BACKUP_MANAGER},mode=770" - | while read d; do
|
franta-hg@0
|
165 |
mkdir -p $(dirname "$VCS_BACKUP_CURRENT_DIR/$d");
|
franta-hg@12
|
166 |
if [[ -e "$VCS_BACKUP_CURRENT_DIR/$d" ]]; then
|
franta-hg@12
|
167 |
callBackSocket="$VCS_BACKUP_CONFIG_DIR/$d/$VCS_BACKUP_CLONE_CALLBACK_SOCKET";
|
franta-hg@12
|
168 |
if [[ -e "$callBackSocket" ]]; then
|
franta-hg@12
|
169 |
echo "alreadyDone" | socat -u - unix-send:"$callBackSocket";
|
franta-hg@12
|
170 |
fi
|
franta-hg@12
|
171 |
else
|
franta-hg@12
|
172 |
btrfs subvolume create "$VCS_BACKUP_CURRENT_DIR/$d" && \
|
franta-hg@12
|
173 |
echo "subvolumeCreated" > "$VCS_BACKUP_CONFIG_DIR/$d/state.txt" && \
|
franta-hg@12
|
174 |
chown "${VCS_BACKUP_USER}:${VCS_BACKUP_USER}" "$VCS_BACKUP_CURRENT_DIR/$d" && \
|
franta-hg@12
|
175 |
echo "$d" | socat -u - unix-send:${VCS_BACKUP_CLONE_SOCKET};
|
franta-hg@12
|
176 |
fi
|
franta-hg@0
|
177 |
done
|
franta-hg@0
|
178 |
}
|
franta-hg@0
|
179 |
|
franta-hg@0
|
180 |
# Environment: server
|
franta-hg@5
|
181 |
# User: $VCS_BACKUP_USER
|
franta-hg@0
|
182 |
# should be started as a systemd/init service
|
franta-hg@0
|
183 |
vcs_backup_public_serverStartCloneService() {
|
franta-hg@0
|
184 |
socat -u "unix-recv:${VCS_BACKUP_CLONE_SOCKET},mode=700" - | while read d; do
|
franta-hg@2
|
185 |
vcsType=$(echo "$d" | sed 's@/.*@@g');
|
franta-hg@0
|
186 |
url=$(cat "$VCS_BACKUP_CONFIG_DIR/$d/url.txt");
|
franta-hg@3
|
187 |
|
franta-hg@0
|
188 |
if isValidTypeAndURL "$vcsType" "$url"; then
|
franta-hg@8
|
189 |
if [[ "$vcsType" == "hg" ]]; then hg clone -U "$url" "$VCS_BACKUP_CURRENT_DIR/$d";
|
franta-hg@8
|
190 |
elif [[ "$vcsType" == "git" ]]; then git clone --mirror "$url" "$VCS_BACKUP_CURRENT_DIR/$d";
|
franta-hg@0
|
191 |
fi && echo "cloned" > "$VCS_BACKUP_CONFIG_DIR/$d/state.txt";
|
franta-hg@0
|
192 |
else
|
franta-hg@0
|
193 |
echo "Unsupported VCS type: '$vcsType' or URL: '$url'" >&2;
|
franta-hg@0
|
194 |
fi
|
franta-hg@3
|
195 |
|
franta-hg@3
|
196 |
callBackSocket="$VCS_BACKUP_CONFIG_DIR/$d/$VCS_BACKUP_CLONE_CALLBACK_SOCKET";
|
franta-hg@3
|
197 |
if [[ -e "$callBackSocket" ]]; then
|
franta-hg@3
|
198 |
echo "done" | socat -u - unix-send:"$callBackSocket";
|
franta-hg@3
|
199 |
fi
|
franta-hg@0
|
200 |
done
|
franta-hg@0
|
201 |
}
|
franta-hg@0
|
202 |
|
franta-hg@7
|
203 |
# Environment: client
|
franta-hg@7
|
204 |
# prints list of repositories in recfile format
|
franta-hg@7
|
205 |
# usage example: vcs-backup.sh clientListRepositories | relpipe-in-recfile | relpipe-out-tabular
|
franta-hg@7
|
206 |
vcs_backup_public_clientListRepositories() {
|
franta-hg@7
|
207 |
${VCS_BACKUP_SSH_COMMAND[@]} vcs-backup.sh serverListRepositories;
|
franta-hg@7
|
208 |
}
|
franta-hg@7
|
209 |
|
franta-hg@7
|
210 |
# Environment: server
|
franta-hg@7
|
211 |
# User: $VCS_BACKUP_MANAGER
|
franta-hg@7
|
212 |
vcs_backup_public_serverListRepositories() {
|
franta-hg@15
|
213 |
printRecfileKeyValue "%rec" "repository";
|
franta-hg@14
|
214 |
printRecfileKeyValue "%type" "bytes int";
|
franta-hg@14
|
215 |
printRecfileKeyValue "%type" "public bool";
|
franta-hg@7
|
216 |
echo;
|
franta-hg@7
|
217 |
|
franta-hg@7
|
218 |
find "$VCS_BACKUP_CONFIG_DIR" -name url.txt -printf '%P\n' | sort | xargs dirname | while read d; do
|
franta-hg@7
|
219 |
url=$(cat "$VCS_BACKUP_CONFIG_DIR/$d/url.txt");
|
franta-hg@7
|
220 |
state=$(cat "$VCS_BACKUP_CONFIG_DIR/$d/state.txt");
|
franta-hg@7
|
221 |
vcsType=$(echo "$d" | sed 's@/.*@@g');
|
franta-hg@7
|
222 |
sizeBytes=$(du -sb "$VCS_BACKUP_CURRENT_DIR/$d" | cut -f1);
|
franta-hg@7
|
223 |
[[ -e "$VCS_BACKUP_PUBLIC_DIR/$d" ]] && public="true" || public="false";
|
franta-hg@7
|
224 |
|
franta-hg@7
|
225 |
if [[ "$vcsType" == "hg" ]]; then lastCommit=$(hg log --limit 1 --template '{date|isodatesec}' -R "$VCS_BACKUP_CURRENT_DIR/$d" 2>/dev/null);
|
franta-hg@7
|
226 |
elif [[ "$vcsType" == "git" ]]; then lastCommit=$(git -C "$VCS_BACKUP_CURRENT_DIR/$d" log --max-count=1 --pretty="%ai");
|
franta-hg@7
|
227 |
else lastCommit=""; fi
|
franta-hg@7
|
228 |
|
franta-hg@9
|
229 |
printRecfileKeyValue "type" "$vcsType";
|
franta-hg@9
|
230 |
printRecfileKeyValue "url" "$url";
|
franta-hg@9
|
231 |
printRecfileKeyValue "state" "$state";
|
franta-hg@9
|
232 |
printRecfileKeyValue "public" "$public";
|
franta-hg@9
|
233 |
printRecfileKeyValue "serverPath" "$VCS_BACKUP_CURRENT_DIR/$d";
|
franta-hg@9
|
234 |
printRecfileKeyValue "size" "$sizeBytes";
|
franta-hg@9
|
235 |
printRecfileKeyValue "lastCommit" "$lastCommit";
|
franta-hg@7
|
236 |
echo;
|
franta-hg@7
|
237 |
done
|
franta-hg@7
|
238 |
}
|
franta-hg@7
|
239 |
|
franta-hg@6
|
240 |
# Environment: server
|
franta-hg@6
|
241 |
# User: $VCS_BACKUP_USER
|
franta-hg@6
|
242 |
# should be called from cron (usually every day)
|
franta-hg@6
|
243 |
vcs_backup_public_serverPullCronTask() {
|
franta-hg@14
|
244 |
printRecfileKeyValue "%rec" "pull";
|
franta-hg@14
|
245 |
printRecfileKeyValue "%type" "started date";
|
franta-hg@14
|
246 |
printRecfileKeyValue "%type" "finished date";
|
franta-hg@14
|
247 |
printRecfileKeyValue "%type" "duration int";
|
franta-hg@14
|
248 |
printRecfileKeyValue "%type" "resultCode int";
|
franta-hg@11
|
249 |
|
franta-hg@11
|
250 |
find "$VCS_BACKUP_CONFIG_DIR" -name url.txt -printf '%P\n' | sort | xargs dirname | while read d; do
|
franta-hg@11
|
251 |
state=$(cat "$VCS_BACKUP_CONFIG_DIR/$d/state.txt");
|
franta-hg@11
|
252 |
vcsType=$(echo "$d" | sed 's@/.*@@g');
|
franta-hg@11
|
253 |
absolutePath="$VCS_BACKUP_CURRENT_DIR/$d";
|
franta-hg@11
|
254 |
|
franta-hg@11
|
255 |
pullStarted=$(date --iso-8601=s);
|
franta-hg@11
|
256 |
pullStartedMiliseconds=$(($(date +%s%N)/1000000));
|
franta-hg@11
|
257 |
pullFinished="";
|
franta-hg@11
|
258 |
pullDuration="";
|
franta-hg@11
|
259 |
pullResult="";
|
franta-hg@11
|
260 |
pullResultCode="";
|
franta-hg@11
|
261 |
if [[ "$state" == "cloned" ]]; then
|
franta-hg@11
|
262 |
if [[ "$vcsType" == "hg" ]]; then pullResult=$(hg pull --force --repository "$absolutePath" 2>&1); pullResultCode=$?;
|
franta-hg@11
|
263 |
elif [[ "$vcsType" == "git" ]]; then pullResult=$(git -C "$absolutePath" fetch 2>&1); pullResultCode=$?;
|
franta-hg@11
|
264 |
fi
|
franta-hg@11
|
265 |
pullFinished=$(date --iso-8601=s);
|
franta-hg@11
|
266 |
pullFinishedMiliseconds=$(($(date +%s%N)/1000000));
|
franta-hg@11
|
267 |
pullDuration=$(( $pullFinishedMiliseconds - $pullStartedMiliseconds ));
|
franta-hg@11
|
268 |
fi
|
franta-hg@11
|
269 |
|
franta-hg@11
|
270 |
printRecfileKeyValue "serverPath" "$absolutePath";
|
franta-hg@11
|
271 |
printRecfileKeyValue "type" "$vcsType";
|
franta-hg@11
|
272 |
printRecfileKeyValue "state" "$state";
|
franta-hg@11
|
273 |
printRecfileKeyValue "started" "$pullStarted";
|
franta-hg@11
|
274 |
printRecfileKeyValue "finished" "$pullFinished";
|
franta-hg@11
|
275 |
printRecfileKeyValue "duration" "$pullDuration";
|
franta-hg@11
|
276 |
printRecfileKeyValue "resultCode" "$pullResultCode";
|
franta-hg@11
|
277 |
printRecfileKeyValue "message" "$pullResult";
|
franta-hg@11
|
278 |
echo;
|
franta-hg@11
|
279 |
done
|
franta-hg@6
|
280 |
}
|
franta-hg@6
|
281 |
|
franta-hg@6
|
282 |
# Environment: server
|
franta-hg@11
|
283 |
# User: root
|
franta-hg@6
|
284 |
# should be called from cron (usually every day) after Pull (see above)
|
franta-hg@6
|
285 |
vcs_backup_public_serverSnapshotCronTask() {
|
franta-hg@15
|
286 |
printRecfileKeyValue "%rec" "snapshot";
|
franta-hg@15
|
287 |
printRecfileKeyValue "%type" "started date";
|
franta-hg@15
|
288 |
printRecfileKeyValue "%type" "finished date";
|
franta-hg@15
|
289 |
printRecfileKeyValue "%type" "duration int";
|
franta-hg@15
|
290 |
printRecfileKeyValue "%type" "resultCode int";
|
franta-hg@15
|
291 |
|
franta-hg@15
|
292 |
find "$VCS_BACKUP_CONFIG_DIR" -name url.txt -printf '%P\n' | sort | xargs dirname | while read d; do
|
franta-hg@15
|
293 |
state=$(cat "$VCS_BACKUP_CONFIG_DIR/$d/state.txt");
|
franta-hg@15
|
294 |
vcsType=$(echo "$d" | sed 's@/.*@@g');
|
franta-hg@15
|
295 |
absolutePath="$VCS_BACKUP_CURRENT_DIR/$d";
|
franta-hg@15
|
296 |
|
franta-hg@15
|
297 |
started=$(date --iso-8601=s);
|
franta-hg@15
|
298 |
startedMiliseconds=$(($(date +%s%N)/1000000));
|
franta-hg@15
|
299 |
finished="";
|
franta-hg@15
|
300 |
duration="";
|
franta-hg@15
|
301 |
result="";
|
franta-hg@15
|
302 |
resultCode="";
|
franta-hg@15
|
303 |
snapshotPath="";
|
franta-hg@15
|
304 |
if [[ "$state" == "cloned" ]]; then
|
franta-hg@15
|
305 |
snapshotPath="$VCS_BACKUP_SNAPSHOT_DIR/$d/$(date --iso-8601=date)";
|
franta-hg@15
|
306 |
mkdir -p $(dirname "$snapshotPath");
|
franta-hg@15
|
307 |
result=$(btrfs subvolume snapshot -r "$absolutePath" "$snapshotPath" 2>&1);
|
franta-hg@15
|
308 |
resultCode=$?;
|
franta-hg@15
|
309 |
finished=$(date --iso-8601=s);
|
franta-hg@15
|
310 |
finishedMiliseconds=$(($(date +%s%N)/1000000));
|
franta-hg@15
|
311 |
duration=$(( $finishedMiliseconds - $startedMiliseconds ));
|
franta-hg@15
|
312 |
fi
|
franta-hg@15
|
313 |
|
franta-hg@15
|
314 |
printRecfileKeyValue "currentPath" "$absolutePath";
|
franta-hg@15
|
315 |
printRecfileKeyValue "snapshotPath" "$snapshotPath";
|
franta-hg@15
|
316 |
printRecfileKeyValue "type" "$vcsType";
|
franta-hg@15
|
317 |
printRecfileKeyValue "state" "$state";
|
franta-hg@15
|
318 |
printRecfileKeyValue "started" "$started";
|
franta-hg@15
|
319 |
printRecfileKeyValue "finished" "$finished";
|
franta-hg@15
|
320 |
printRecfileKeyValue "duration" "$duration";
|
franta-hg@15
|
321 |
printRecfileKeyValue "resultCode" "$resultCode";
|
franta-hg@15
|
322 |
printRecfileKeyValue "message" "$result";
|
franta-hg@15
|
323 |
echo;
|
franta-hg@15
|
324 |
done
|
franta-hg@6
|
325 |
}
|
franta-hg@6
|
326 |
|
franta-hg@0
|
327 |
# --- Single entry-point: --------------------------------------------------------------------------
|
franta-hg@0
|
328 |
|
franta-hg@16
|
329 |
loadClientConfigFile;
|
franta-hg@16
|
330 |
loadServerConfigFile;
|
franta-hg@0
|
331 |
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin";
|
franta-hg@0
|
332 |
PUBLIC_FUNCTION_PREFIX="vcs_backup_public_";
|
franta-hg@0
|
333 |
if type -t "$PUBLIC_FUNCTION_PREFIX$1" > /dev/null; then
|
franta-hg@0
|
334 |
"$PUBLIC_FUNCTION_PREFIX${@:1}";
|
franta-hg@4
|
335 |
elif [[ $(basename $0) == "vcs-backup-clone-private-hg" ]]; then "${PUBLIC_FUNCTION_PREFIX}clientSubmitBackupRequest" hg "$1" private clone;
|
franta-hg@4
|
336 |
elif [[ $(basename $0) == "vcs-backup-clone-private-git" ]]; then "${PUBLIC_FUNCTION_PREFIX}clientSubmitBackupRequest" git "$1" private clone;
|
franta-hg@4
|
337 |
elif [[ $(basename $0) == "vcs-backup-clone-public-hg" ]]; then "${PUBLIC_FUNCTION_PREFIX}clientSubmitBackupRequest" hg "$1" public clone;
|
franta-hg@4
|
338 |
elif [[ $(basename $0) == "vcs-backup-clone-public-git" ]]; then "${PUBLIC_FUNCTION_PREFIX}clientSubmitBackupRequest" git "$1" public clone;
|
franta-hg@0
|
339 |
else
|
franta-hg@0
|
340 |
echo "Unsupported sub-command: $1" >&2
|
franta-hg@0
|
341 |
echo "Available sub-commands:" >&2
|
franta-hg@0
|
342 |
declare -F | grep "$PUBLIC_FUNCTION_PREFIX" | sed "s/.*$PUBLIC_FUNCTION_PREFIX/ /g" >&2
|
franta-hg@0
|
343 |
exit 1;
|
franta-hg@0
|
344 |
fi
|