Update comments

1. changed gdrive to rclone command;
2. changed default directory for backup.

Signed-off-by: Teddysun <i@teddysun.com>
This commit is contained in:
Teddysun 2020-02-08 14:06:53 +09:00
parent d969075a95
commit 44df9e002c
No known key found for this signature in database
GPG Key ID: 09BD4C080AD6C46D

View File

@ -1,18 +1,26 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Copyright (C) 2013 - 2020 Teddysun <i@teddysun.com>
#
# This file is part of the LAMP script.
# #
# Auto backup script # LAMP is a powerful bash script for the installation of
# Apache + PHP + MySQL/MariaDB/Percona and so on.
# You can install Apache + PHP + MySQL/MariaDB/Percona in an very easy way.
# Just need to input numbers to choose what you want to install before installation.
# And all things will be done in a few minutes.
# #
# Copyright (C) 2016 Teddysun <i@teddysun.com> # Description: Auto backup shell script
# Description URL: https://teddysun.com/469.html
# #
# URL: https://teddysun.com/469.html # Website: https://lamp.sh
# Github: https://github.com/teddysun/lamp
# #
# You must to modify the config before run it!!! # You must to modify the config before run it!!!
# Backup MySQL/MariaDB/Percona datebases, files and directories # Backup MySQL/MariaDB/Percona datebases, files and directories
# Backup file is encrypted with AES256-cbc with SHA1 message-digest (option) # Backup file is encrypted with AES256-cbc with SHA1 message-digest (option)
# Auto transfer backup file to Google Drive (need install gdrive command) (option) # Auto transfer backup file to Google Drive (need install rclone command) (option)
# Auto transfer backup file to FTP server (option) # Auto transfer backup file to FTP server (option)
# Auto delete Google Drive's or FTP server's remote file (option) # Auto delete Google Drive's or FTP server's remote file (option)
#
[[ $EUID -ne 0 ]] && echo "Error: This script must be run as root!" && exit 1 [[ $EUID -ne 0 ]] && echo "Error: This script must be run as root!" && exit 1
@ -28,13 +36,13 @@ ENCRYPTFLG=true
BACKUPPASS="mypassword" BACKUPPASS="mypassword"
# Directory to store backups # Directory to store backups
LOCALDIR="/root/backups/" LOCALDIR="/opt/backups/"
# Temporary directory used during backup creation # Temporary directory used during backup creation
TEMPDIR="/root/backups/temp/" TEMPDIR="/opt/backups/temp/"
# File to log the outcome of backups # File to log the outcome of backups
LOGFILE="/root/backups/backup.log" LOGFILE="/opt/backups/backup.log"
# OPTIONAL: If you want backup MySQL database, enter the MySQL root password below # OPTIONAL: If you want backup MySQL database, enter the MySQL root password below
MYSQL_ROOT_PASSWORD="" MYSQL_ROOT_PASSWORD=""
@ -55,6 +63,12 @@ LOCALAGEDAILIES="7"
# Delete Googole Drive's & FTP server's remote file flag (true: delete, false: not delete) # Delete Googole Drive's & FTP server's remote file flag (true: delete, false: not delete)
DELETE_REMOTE_FILE_FLG=false DELETE_REMOTE_FILE_FLG=false
# Rclone remote name
RCLONE_NAME=""
# Rclone remote folder name (default "")
RCLONE_FOLDER=""
# Upload to FTP server flag (true: upload, false: not upload) # Upload to FTP server flag (true: upload, false: not upload)
FTP_FLG=false FTP_FLG=false
@ -77,8 +91,6 @@ FTP_DIR=""
########## END OF CONFIG ########## ########## END OF CONFIG ##########
# Date & Time # Date & Time
DAY=$(date +%d) DAY=$(date +%d)
MONTH=$(date +%m) MONTH=$(date +%m)
@ -109,10 +121,10 @@ check_commands() {
fi fi
done done
# check gdrive command # check rclone command
GDRIVE_COMMAND=false RCLONE_COMMAND=false
if [ "$(command -v "gdrive")" ]; then if [ "$(command -v "rclone")" ]; then
GDRIVE_COMMAND=true RCLONE_COMMAND=true
fi fi
# check ftp command # check ftp command
@ -136,7 +148,7 @@ calculate_size() {
# Backup MySQL databases # Backup MySQL databases
mysql_backup() { mysql_backup() {
if [ -z ${MYSQL_ROOT_PASSWORD} ]; then if [ -z "${MYSQL_ROOT_PASSWORD}" ]; then
log "MySQL root password not set, MySQL backup skipped" log "MySQL root password not set, MySQL backup skipped"
else else
log "MySQL dump start" log "MySQL dump start"
@ -199,7 +211,7 @@ start_backup() {
fi fi
# Delete MySQL temporary dump file # Delete MySQL temporary dump file
for sql in `ls ${TEMPDIR}*.sql` for sql in $(ls ${TEMPDIR}*.sql)
do do
log "Delete MySQL temporary dump file: ${sql}" log "Delete MySQL temporary dump file: ${sql}"
rm -f ${sql} rm -f ${sql}
@ -210,19 +222,24 @@ start_backup() {
else else
OUT_FILE="${TARFILE}" OUT_FILE="${TARFILE}"
fi fi
log "File name: ${OUT_FILE}, File size: `calculate_size ${OUT_FILE}`" log "File name: ${OUT_FILE}, File size: $(calculate_size ${OUT_FILE})"
} }
# Transfer backup file to Google Drive # Transfer backup file to Google Drive
# If you want to install gdrive command, please visit website: # If you want to install rclone command, please visit website:
# https://github.com/prasmussen/gdrive # https://rclone.org/downloads/
# of cause, you can use below command to install it rclone_upload() {
# For x86_64: wget -O /usr/bin/gdrive http://dl.lamp.sh/files/gdrive-linux-x64; chmod +x /usr/bin/gdrive if ${RCLONE_COMMAND}; then
# For i386: wget -O /usr/bin/gdrive http://dl.lamp.sh/files/gdrive-linux-386; chmod +x /usr/bin/gdrive [ -z "${RCLONE_NAME}" ] && log "Error: RCLONE_NAME can not be empty!" && exit 1
gdrive_upload() { if [ -n "${RCLONE_FOLDER}" ]; then
if ${GDRIVE_COMMAND}; then rclone ls ${RCLONE_NAME}:${RCLONE_FOLDER} 2>&1 > /dev/null
if [ $? -ne 0 ]; then
log "Create the path ${RCLONE_NAME}:${RCLONE_FOLDER}"
rclone mkdir ${RCLONE_NAME}:${RCLONE_FOLDER}
fi
fi
log "Tranferring backup file to Google Drive" log "Tranferring backup file to Google Drive"
gdrive upload --no-progress ${OUT_FILE} >> ${LOGFILE} rclone copy ${OUT_FILE} ${RCLONE_NAME}:${RCLONE_FOLDER} >> ${LOGFILE}
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
log "Error: Tranferring backup file to Google Drive failed" log "Error: Tranferring backup file to Google Drive failed"
exit 1 exit 1
@ -234,14 +251,14 @@ gdrive_upload() {
# Tranferring backup file to FTP server # Tranferring backup file to FTP server
ftp_upload() { ftp_upload() {
if ${FTP_FLG}; then if ${FTP_FLG}; then
[ -z ${FTP_HOST} ] && log "Error: FTP_HOST can not be empty!" && exit 1 [ -z "${FTP_HOST}" ] && log "Error: FTP_HOST can not be empty!" && exit 1
[ -z ${FTP_USER} ] && log "Error: FTP_USER can not be empty!" && exit 1 [ -z "${FTP_USER}" ] && log "Error: FTP_USER can not be empty!" && exit 1
[ -z ${FTP_PASS} ] && log "Error: FTP_PASS can not be empty!" && exit 1 [ -z "${FTP_PASS}" ] && log "Error: FTP_PASS can not be empty!" && exit 1
[ -z ${FTP_DIR} ] && log "Error: FTP_DIR can not be empty!" && exit 1 [ -z "${FTP_DIR}" ] && log "Error: FTP_DIR can not be empty!" && exit 1
local FTP_OUT_FILE=$(basename ${OUT_FILE}) local FTP_OUT_FILE=$(basename ${OUT_FILE})
log "Tranferring backup file to FTP server" log "Tranferring backup file to FTP server"
ftp -inp ${FTP_HOST} 2>&1 >> ${LOGFILE} <<EOF ftp -in ${FTP_HOST} 2>&1 >> ${LOGFILE} <<EOF
user $FTP_USER $FTP_PASS user $FTP_USER $FTP_PASS
binary binary
lcd $LOCALDIR lcd $LOCALDIR
@ -276,11 +293,17 @@ get_file_date() {
# Delete Google Drive's old backup file # Delete Google Drive's old backup file
delete_gdrive_file() { delete_gdrive_file() {
local FILENAME=$1 local FILENAME=$1
if ${DELETE_REMOTE_FILE_FLG} && ${GDRIVE_COMMAND}; then if ${DELETE_REMOTE_FILE_FLG} && ${RCLONE_COMMAND}; then
local FILEID=$(gdrive list -q "name = '${FILENAME}'" --no-header | awk '{print $1}') rclone ls ${RCLONE_NAME}:${RCLONE_FOLDER}/${FILENAME} 2>&1 > /dev/null
if [ -n ${FILEID} ]; then if [ $? -eq 0 ]; then
gdrive delete ${FILEID} >> ${LOGFILE} rclone delete ${RCLONE_NAME}:${RCLONE_FOLDER}/${FILENAME} >> ${LOGFILE}
log "Google Drive's old backup file name: ${FILENAME} has been deleted" if [ $? -eq 0 ]; then
log "Google Drive's old backup file name: ${FILENAME} has been deleted"
else
log "Failed to delete Google Drive's old backup file name: ${FILENAME}"
fi
else
log "Google Drive's old backup file name: ${FILENAME} is not exist"
fi fi
fi fi
} }
@ -312,7 +335,7 @@ clean_up_files() {
for f in ${LS[@]} for f in ${LS[@]}
do do
get_file_date ${f} get_file_date ${f}
if [ $? == 0 ]; then if [ $? -eq 0 ]; then
if [[ ${FILEAGE} -gt ${LOCALAGEDAILIES} ]]; then if [[ ${FILEAGE} -gt ${LOCALAGEDAILIES} ]]; then
rm -f ${f} rm -f ${f}
log "Old backup file name: ${f} has been deleted" log "Old backup file name: ${f} has been deleted"
@ -341,7 +364,7 @@ start_backup
log "Backup progress complete" log "Backup progress complete"
log "Upload progress start" log "Upload progress start"
gdrive_upload rclone_upload
ftp_upload ftp_upload
log "Upload progress complete" log "Upload progress complete"