blob: 839b19981029abd22982890b3f35f00a3b866c64 (
plain)
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
|
#!/bin/bash
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# Virtualhost backup script [Thomas Lange <tl@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# #
# This script goes through the first level in the virtual host root directory #
# and creates for each domain name within a compressed backup file. The script #
# is compatible with a directory structure like the following: #
# #
# |--- bob #
# | |--- bobs-blog.tld #
# | |--- config #
# | |--- htdocs #
# |--- alice #
# | |--- alice-domain.tld #
# | |--- config #
# | |--- htdocs #
# |--- thomas #
# |--- sub1.thomas-blog.tld #
# | |--- config #
# | |--- htdocs #
# |--- sub2.thomas-blog.tld #
# |--- config #
# |--- htdocs #
# #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
#===============================================================================
# Define backup main directories
#===============================================================================
DIRECTORY_ROOT="/mnt/data/backups/virtualhosts/"
DIRECTORY_PATH="$(date +%Y-%m-%d-%Hh%Mm)/"
DIRECTORY_FROM="/var/www/"
#===============================================================================
# Delete old backups in backup root directory
#===============================================================================
find "${DIRECTORY_ROOT}" -type d -mtime +14 -exec rm -r {} \;
#===============================================================================
# Create backup path directory if not exists
#===============================================================================
if [ ! -d "${DIRECTORY_ROOT}${DIRECTORY_PATH}" ]; then
mkdir "${DIRECTORY_ROOT}${DIRECTORY_PATH}"
fi
#===============================================================================
# Loop through all usernames within the source root directory
#===============================================================================
for username in $(find ${DIRECTORY_FROM}* -maxdepth 0 -type d -exec basename {} \;); do
#===============================================================================
# Define backup sub directories and target filename
#===============================================================================
DIRECTORY_USER="${DIRECTORY_ROOT}${DIRECTORY_PATH}${username}/"
DIRECTORY_FILE="${DIRECTORY_USER}%s.tar.bz2"
echo "[INFO] Entering directory: ${DIRECTORY_FROM}${username}/:"
#===============================================================================
# Create backup sub path directory if not exists
#===============================================================================
if [ ! -d "${DIRECTORY_USER}" ]; then
echo "[INFO] Creating backup directory for user $username [...]"
mkdir "${DIRECTORY_USER}"
fi
#===============================================================================
# Loop through all virtualhosts within the user directory
#===============================================================================
for virtualhost in $(find ${DIRECTORY_FROM}${username}/* -maxdepth 0 -type d -exec basename {} \;); do
echo "[INFO] Creating compressed backup for virtualhost $virtualhost [...]"
tar --create --bzip2 --file "$(printf "${DIRECTORY_FILE}" "${virtualhost}")" --directory "${DIRECTORY_FROM}${username}/" "${virtualhost}"
done
done
|