-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbackup_assets.sh
executable file
·59 lines (50 loc) · 1.52 KB
/
backup_assets.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
#!/bin/bash
# Backup Assets
#
# Backup local assets
#
# @author Connor Bär
# @copyright Copyright (c) 2017 Connor Bär
# @link https://madebyconnor.co/
# @package wordpress-scripts
# @since 1.0.0
# @license MIT
# Get the directory of the currently executing script
DIR="$(dirname "${BASH_SOURCE[0]}")"
# Include files
INCLUDE_FILES=(
"common/defaults.sh"
".env.sh"
"common/common_env.sh"
)
for INCLUDE_FILE in "${INCLUDE_FILES[@]}"
do
if [ -f "${DIR}/${INCLUDE_FILE}" ]
then
source "${DIR}/${INCLUDE_FILE}"
else
echo "File ${DIR}/${INCLUDE_FILE} is missing, aborting."
exit 1
fi
done
# Set the backup directory paths
BACKUP_ASSETS_DIR_PATH="${LOCAL_BACKUPS_PATH}${LOCAL_DB_NAME}/${ASSETS_BACKUP_SUBDIR}/"
BACKUP_WP_DIR_PATH="${LOCAL_BACKUPS_PATH}${LOCAL_DB_NAME}/${WP_BACKUP_SUBDIR}/"
# Make sure the asset backup directory exists
if [[ ! -d "${BACKUP_ASSETS_DIR_PATH}" ]] ; then
echo "Creating backup directory ${BACKUP_ASSETS_DIR_PATH}"
mkdir -p "${BACKUP_ASSETS_DIR_PATH}"
fi
# Backup the asset dir files via rsync
for DIR in "${LOCAL_ASSETS_DIRS[@]}"
do
rsync -a -z "${LOCAL_ASSETS_PATH}${DIR}" "${BACKUP_ASSETS_DIR_PATH}" --progress
echo "*** Backed up assets from ${LOCAL_ASSETS_PATH}${DIR}"
done
# Make sure the WordPress files backup directory exists
if [[ ! -d "${BACKUP_WP_DIR_PATH}" ]] ; then
echo "Creating backup directory ${BACKUP_WP_DIR_PATH}"
mkdir -p "${BACKUP_WP_DIR_PATH}"
fi
# Normal exit
exit 0