This repository was archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackup.sh
executable file
·208 lines (178 loc) · 5.62 KB
/
backup.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#!/bin/bash
cd "$BACKUPDIR" && source "helpers.sh"
checkAllEnvironmentVariables() {
local envError=false
[ "$PINGURL" == "" ] && envError=true
[ "$DOCKERDIR" == "" ] && envError=true
[ "$BACKUPDIR" == "" ] && envError=true
[ "$PCLOUDLOCATION" == "" ] && envError=true
[ "$RESTIC_PASSWORD_FILE" == "" ] && envError=true
if [ "$envError" = true ]; then
printError "Some environmet variables are not set"
exit 1
else
printSuccess "All environmet variables are set"
fi
}
backupCurrentCrontab() {
crontab -l >"$BACKUPDIR"currentCrontabBackup.txt
checkNoError "$?" "crontab backup"
}
backupLogs() {
# No stdout print because file is backing up
rclone sync "$BACKUPDIR"/logs/ pcloud:"$PCLOUDLOCATION"logs
}
backupMediaFolderIfExternalExisting() {
if [ "$EXTERNALMEDIAFOLDER" != "" ] && [ "$LOCALMEDIAFOLDER" != "" ]; then
rclone sync "$LOCALMEDIAFOLDER" "$EXTERNALMEDIAFOLDER"
checkNoError "$?" "Backup media folder"
else
printInfo "No media folder specified"
fi
}
backupTeleportIfExisting() {
TELEPORT_CONFIG=/etc/teleport.yaml
TELEPORT_DIR=/var/lib/teleport/
if [ -d "$TELEPORT_DIR" ]; then
directoryBackup "$TELEPORT_DIR"
if [ -f "$TELEPORT_CONFIG" ]; then
fileBackup "$TELEPORT_CONFIG"
else
printInfo "No teleport config found"
fi
else
printInfo "No teleport folder found"
fi
}
healthStart() {
curl -sS -o /dev/null "$PINGURL"/start
checkNoError "$?" "Sending START curl"
}
healthFinish() {
curl -sS -o /dev/null "$PINGURL"
checkNoError "$?" "Sending STOP curl"
}
resticInit() {
printInfo "Preparing a new repository of <$folderName>"
restic init
checkNoError "$?" "restic prepare $folderName"
sleep 5
}
resticCheckIfRepoExists() {
restic snapshots >/dev/null 2>&1
if [ "$?" -ne 0 ]; then
resticInit
fi
}
resticCopy() {
resticCheckIfRepoExists
printInfo "Restic Backup of <$folderName>"
restic backup "$location"
checkNoError "$?" "restic backup $folderName"
}
resticCleanup() {
printInfo "Restic Cleanup of <$folderName>"
restic forget --keep-within-daily 7d --keep-within-weekly 1m --keep-within-monthly 1y --keep-within-yearly 75y --prune
checkNoError "$?" "restic cleanup $folderName"
}
resticCacheCleanup() {
restic cache --cleanup >/dev/null 2>&1
checkNoError "$?" "restic cache cleanup"
}
getImageVersion() {
printf "%s:" "$1"
if [ "$(docker inspect -f '{{ index .Config.Labels "org.opencontainers.image.authors" }}' "$1")" = "linuxserver.io" ]; then
docker inspect -f '{{ index .Config.Labels "build_version" }}' "$1"
else
docker inspect --format='{{.Config.Image}}' "$1"
fi
}
printAllImageVersions() {
printInfo "Print docker container versions"
for Docker in $(docker ps --format '{{.Names}}'); do
getImageVersion "$Docker"
done
}
stopDockerCompose() {
cd "$location" && docker compose stop
checkNoError "$?" "docker compose $folderName stop"
}
startDockerCompose() {
cd "$location" && docker compose start
checkNoError "$?" "docker compose $folderName start"
}
turnOnNextcloudMaintenanceMode() {
docker exec nextcloud occ maintenance:mode --on >/dev/null
checkNoError "$?" "nextcloud maintenance mode on"
}
turnOffNextcloudMaintenanceMode() {
docker exec nextcloud occ maintenance:mode --off >/dev/null
checkNoError "$?" "nextcloud maintenance mode off"
}
chooseForegoingAction() {
if echo $dockerToStop | grep -w $folderName >/dev/null; then
stopDockerCompose
elif [ "$folderName" == "nextcloud" ]; then
turnOnNextcloudMaintenanceMode
fi
}
chooseSubsequentAction() {
if echo $dockerToStop | grep -w $folderName >/dev/null; then
startDockerCompose
elif [ "$folderName" == "nextcloud" ]; then
turnOffNextcloudMaintenanceMode
fi
}
initFileScriptEnv() {
location="$1"
folderName="$(echo $location | rev | cut -d'/' -f1 | rev | cut -d'.' -f1)"
printImportant "Backing up <$location>"
export RESTIC_REPOSITORY="rclone:pcloud:$PCLOUDLOCATION$folderName"
}
fileBackup() {
initFileScriptEnv "$1"
resticCopy
# only continue each step if the previous step has not caused an error
[ "$_returnVar" != "error" ] && resticCleanup
resetReturnVar
}
initFolderScriptEnv() {
location="$1"
folderName="$(echo $location | rev | cut -d'/' -f2 | rev)"
printImportant "Backing up <$location>"
export RESTIC_REPOSITORY="rclone:pcloud:$PCLOUDLOCATION$folderName"
}
directoryBackup() {
initFolderScriptEnv "$1"
resticCopy
# only continue each step if the previous step has not caused an error
[ "$_returnVar" != "error" ] && resticCleanup
resetReturnVar
}
goThroughDockerDirectorys() {
for location in $DOCKERDIR*/; do
initFolderScriptEnv "$location"
chooseForegoingAction
# only continue each step if the previous step has not caused an error
[ "$_returnVar" != "error" ] && resticCopy
[ "$_returnVar" != "error" ] && chooseSubsequentAction
[ "$_returnVar" != "error" ] && resticCleanup
resetReturnVar
done
}
# Specify what docker should be stopped before backing them up, seperate with space
dockerToStop="vaultwarden firefly gitea hedgedoc homeassistant"
export PATH=$PATH:/usr/bin/rclone
printImportant "backup.sh"
checkSudoRights
checkAllEnvironmentVariables
healthStart
resticCacheCleanup
backupCurrentCrontab
printAllImageVersions
goThroughDockerDirectorys
directoryBackup "/opt/backup/"
backupTeleportIfExisting
backupMediaFolderIfExternalExisting
healthFinish
backupLogs