-
Notifications
You must be signed in to change notification settings - Fork 9
/
rbackup.sh
executable file
·247 lines (201 loc) · 6.85 KB
/
rbackup.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
#!/usr/bin/env bash
#######################################################################
#
# rbackup.sh
#
# Shell script for make encrypted backups with rsync and GnuPG.
# For the information please see the README.
#
# Copyright (C) 2018-2022 brainf+ck
#
#
# GNU GENERAL PUBLIC LICENSE
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#######################################################################
#######################################################################
# Settings
#######################################################################
# Program information
readonly prog_name="rbackup"
readonly version="0.8.1"
readonly signature="Copyright (C) 2022 brainf+ck"
# Date format used for log file entries: `YYYY/mm/dd H:M:S`
readonly current_date="$(date +'%Y/%m/%d %T')"
# Config files directory
readonly config_dir="${HOME}/.config/${prog_name}"
# Config file: `~/.config/rbackup/config`
readonly config_file="${config_dir}/config"
#### Config file variables:
#
# gpg UID for file encryption
readonly gpg_uid=$(awk '/^gpg_uid/{print $3}' "${config_file}")
# backup file name (label)
readonly label=$(awk '/^label/{print $3}' "${config_file}")
# source directory
readonly source_dir=$(awk '/^source_dir/{print $3}' "${config_file}")
# destination directory (backup dir)
readonly dest_dir=$(awk '/^dest_dir/{print $3}' "${config_file}")
# external volumes directories for multiple copies
readonly extdir_1=$(awk '/^extdir_1/{print $3}' "${config_file}")
readonly extdir_2=$(awk '/^extdir_2/{print $3}' "${config_file}")
#### EOF config file.
## rsync settings:
#
# rsync --help | man rsync for more information
#
# exclude file
readonly exclude_file="${config_dir}/excluderc"
# log file
readonly log_file="${dest_dir}/rbackup-$(date +'%Y-%m-%d').log"
# options:
# --archive, -a archive mode; equals -rlptgoD (no -H,-A,-X)
# --human-readable, -h output numbers in a human-readable format
# --one-file-system, -x don't cross filesystem boundaries
# --info=progress2 show total transfer progress
# --log-file=FILE log what we're doing to the specified FILE
# --exclude-from=FILE read exclude patterns from FILE
#
declare -a rsync_opts=(
"-ahx" \
"--info=progress2" \
"--log-file=${log_file}" \
"--exclude-from=${exclude_file}"
)
# Set backup filename (date format: `YYYY-mm-dd`)
readonly fname="${label}-$(date +'%Y-%m-%d')"
#######################################################################
# Functions
#######################################################################
## Error except: write a message in the log file and exit with (1)
die() {
printf "%s\\n" "${current_date} [Error!] $*" >>"${log_file}"
exit 1
}
## Check program settings
check_settings() {
# check dependencies
declare -a depends=(rsync gpg);
for package in "${depends[@]}"; do
if ! hash "${package}" 2>/dev/null; then
die "${package} is not installed."
fi
done
# check config file
if [[ ! -f "${config_file}" ]]; then
die "Cannot load configuration file."
fi
# check exclude file
if [[ ! -f "${exclude_file}" ]]; then
die "${exclude_file} not exist."
fi
# create backup directory if not exist
if ! mkdir -pv "${dest_dir}"; then
die "Cannot create directory for backups."
fi
}
## Show program version
show_version() {
printf "%s\\n" "${prog_name} ${version}"
printf "%s\\n" "${signature}"
printf "%s\\n" "License GNU GPL-3.0-or-later <https://gnu.org/licenses/gpl.html>"
printf "%s\\n" "This is free software: you are free to change and redistribute it."
printf "%s\\n\\n" "There is NO WARRANTY, to the extent permitted by law."
}
## Show help menù
usage() {
show_version
cat << EOF
Encrypted backups with rsync and GnuPG
Usage: ${prog_name} [command]
Commands:
-h, --help Show this help menù
-s, --start Start backup
-v, --version Show program version
EOF
}
## Start program
start_backup() {
check_settings
# print information messages on log file
printf "%s\\n" "${current_date} [Info] Backup started" >>"${log_file}"
printf "%s\\n" "${current_date} [Info] Source directory: ${source_dir}" >>"${log_file}"
printf "%s\\n" "${current_date} [Info] Destination directory: ${dest_dir}" >>"${log_file}"
# run rsync:
if ! rsync "${rsync_opts[@]}" "${source_dir}" "${dest_dir}/${fname}"; then
die "rsync command failed."
fi
# create tar/gzip archive
cd "${dest_dir}" || exit
if ! tar -czf "${fname}.tar.gz" "${fname}"; then
die "Cannot create archive file."
fi
# encrypt backup with gpg:
#
# --encrypt --cipher-algo <name> --recipient <user>
#
# -e, --encrypt Encrypt data
# --cipher-algo <name> Use <name> as cipher algorithm
# -r, --recipient <name> Encrypt for user id <name>
#
# gpg --help | man gpg for more information
if ! gpg -e --cipher-algo AES256 -r "${gpg_uid}" "${fname}.tar.gz"; then
die "GnuPG encryption failed."
fi
# copy encrypted backup to external volume/s directories if they exists
if [[ -d "${extdir_1}" ]]; then
cp "${fname}.tar.gz.gpg" "${extdir_1}"
else
printf "%s\\n" "${current_date} [Warning] External device not mounted" >>"${log_file}"
fi
if [[ -d "${extdir_2}" ]]; then
cp "${fname}.tar.gz.gpg" "${extdir_2}"
fi
# delete unencrypted files from current directory
rm -rf "${fname}.tar.gz"
rm -rf "${fname}"
# End
printf "%s\\n" "${current_date} [OK] Program successfully terminated" >>"${log_file}"
exit 0
}
## Parse command line arguments and start program
main() {
if [[ "$#" -eq 0 ]]; then
usage
exit 1
fi
while [[ "$#" -gt 0 ]]; do
case "$1" in
-h | --help)
usage
exit 0
;;
-v | --version)
show_version
exit 0
;;
-s | --start)
start_backup
;;
-- | -* | *)
printf "%s\\n" "${prog_name}: Invalid option '$1'!"
printf "%s\\n" "Try '${prog_name} --help' for more information."
exit 1
;;
esac
done
}
# Call main
main "${@}"