Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b8b0afec2 | ||
|
|
0cc7e574fe |
33
Readme.md
33
Readme.md
@@ -220,10 +220,10 @@ The postgres user must be added to the backup group for this, so that the basic
|
||||
|
||||
### PostgreSQL Config variables
|
||||
|
||||
Variable | Default | Description
|
||||
| Variable | Default | Description |
|
||||
| - | - | - |
|
||||
DATABASE_FULL_DUMP | | if empty, dump per databse, if set dump all in one file, if set to schema dump only schema
|
||||
DATABASE_USER | | overide username to connect to database
|
||||
| DATABASE_FULL_DUMP | | if empty, dump per databse, if set dump all in one file, if set to schema dump only schema |
|
||||
| DATABASE_USER | | overide username to connect to database |
|
||||
|
||||
### PostgreSQL Control files
|
||||
|
||||
@@ -239,10 +239,10 @@ If non root ident authentication run is used, be sure that the `mysql` user is i
|
||||
|
||||
### MySQL Config variables
|
||||
|
||||
Variable | Default | Description
|
||||
| Variable | Default | Description |
|
||||
| - | - | - |
|
||||
DATABASE_FULL_DUMP | | if empty, dump per databse, if set dump all in one file, if set to schema dump only schema
|
||||
MYSQL_DB_CONFIG | | override file for connection. In modern mariaDB installations it is rcommended to run the script as root or mysql user and use the ident authentication instead.
|
||||
| DATABASE_FULL_DUMP | | if empty, dump per databse, if set dump all in one file, if set to schema dump only schema |
|
||||
| MYSQL_DB_CONFIG | | override file for connection. In modern mariaDB installations it is rcommended to run the script as root or mysql user and use the ident authentication instead. |
|
||||
|
||||
### MySQLControl files
|
||||
|
||||
@@ -259,12 +259,13 @@ This user is neede to create the temporary dump folder and access for the git fi
|
||||
|
||||
### gitea Config Variables
|
||||
|
||||
Variable | Default | Description
|
||||
| Variable | Default | Description |
|
||||
| - | - | - |
|
||||
GIT_USER | git | The user that runs gitea |
|
||||
GITEA_TMP | /tmp/gitea/ | Where the temporary dump files from the backup are stored, as user git |
|
||||
GITEA_BIN | /usr/local/bin/gitea | Where the gitea binary is located |
|
||||
GITEA_CONFIG | /etc/gitea/app.ini | The configuration file for gitea |
|
||||
| GIT_USER | git | The user that runs gitea |
|
||||
| GITEA_WORKING_DIR | /var/tmp/gitea/ | Where the temporary dump files from the backup are stored, as user git |
|
||||
| GITEA_TEMP_DIR | /var/tmp/ | General temporary folder |
|
||||
| GITEA_BIN | /usr/local/bin/gitea | Where the gitea binary is located |
|
||||
| GITEA_CONFIG | /etc/gitea/app.ini | The configuration file for gitea |
|
||||
|
||||
### gitea Control files
|
||||
|
||||
@@ -274,12 +275,12 @@ There are no control files for gitea backup
|
||||
|
||||
### zabbix Config Variables
|
||||
|
||||
Variable | Default | Description
|
||||
| Variable | Default | Description |
|
||||
| - | - | - |
|
||||
ZABBIX_DUMP | /usr/local/bin/zabbix-dump |
|
||||
ZABBIX_DATABASE | '' | Must be set as either psql or mysql
|
||||
ZABBIX_CONFIG | '' | if not set uses default location
|
||||
ZABBIX_UNKNOWN_TABLES | '' | if set, changed to -f (force)
|
||||
| ZABBIX_DUMP | /usr/local/bin/zabbix-dump | |
|
||||
| ZABBIX_DATABASE | '' | Must be set as either psql or mysql |
|
||||
| ZABBIX_CONFIG | '' | if not set uses default location |
|
||||
| ZABBIX_UNKNOWN_TABLES | '' | if set, changed to -f (force) |
|
||||
|
||||
### zabbix Control files
|
||||
|
||||
|
||||
@@ -95,7 +95,8 @@ PRINTF_INFO_STRING="%-23s: %s\n";
|
||||
PRINTF_MASTER_BLOCK="=== [%-8s: %19s] ==[%s]====================================>\n";
|
||||
PRINTF_SUB_BLOCK="|-- [%-8s: %19s] --[%s]------------------------------------>\n";
|
||||
PRINTF_SUBEXT_BLOCK="|-- [%-8s: %s: %19s] --[%s]------------------------------------>\n";
|
||||
PRINTF_DB_SUB_BLOCK=">>- [%-8s: %s] =======================[%s]====================================>\n";
|
||||
PRINTF_DB_SUB_BLOCK=">>- [%-8s: %s] ==[%s]=======================>\n";
|
||||
PRINTF_DB_RUN_TIME_SUB_BLOCK=">>- [%-8s: %s] ==[%s]==[Run time: %s:]=======================>\n";
|
||||
# opt flags
|
||||
OPT_VERBOSE="";
|
||||
OPT_PROGRESS="";
|
||||
@@ -152,9 +153,11 @@ MYSQL_DB_CONFIG="";
|
||||
MYSQL_DB_CONFIG_PARAM="";
|
||||
# gitea module
|
||||
GIT_USER="";
|
||||
GITEA_TMP="";
|
||||
GITEA_WORKING_DIR="";
|
||||
GITEA_TEMP_DIR="";
|
||||
GITEA_BIN="";
|
||||
GITEA_CONFIG="";
|
||||
GITEA_EXPORT_TYPE="";
|
||||
# zabbix module
|
||||
ZABBIX_DUMP_BIN="";
|
||||
ZABBIX_CONFIG="";
|
||||
|
||||
@@ -2,10 +2,8 @@
|
||||
|
||||
# rename to borg.backup.gitea.settings to use
|
||||
|
||||
# override settings in borg.backup.settings with SUB_ prefix
|
||||
# valid for BACKUP_FILE, BACKUP_SET, COMPRESSION*, KEEP_*
|
||||
|
||||
GIT_USER="";
|
||||
GITEA_TMP="";
|
||||
GITEA_WORKING_DIR="";
|
||||
GITEA_TEMP_DIR="";
|
||||
GITEA_BIN="";
|
||||
GITEA_CONFIG="";
|
||||
|
||||
@@ -29,9 +29,13 @@ if [ -z "${GIT_USER}" ]; then
|
||||
GIT_USER="git";
|
||||
fi;
|
||||
# set GITEA_* if not set
|
||||
if [ -z "${GITEA_TMP}" ]; then
|
||||
if [ -z "${GITEA_WORKING_DIR}" ]; then
|
||||
# run gitea backup (user mktemp?)
|
||||
GITEA_TMP="/tmp/gitea/";
|
||||
GITEA_WORKING_DIR="/var/tmp/gitea/";
|
||||
fi;
|
||||
# general temp folder for temporary data storage, this is not working output folder
|
||||
if [ -z "${GITEA_TEMP_DIR}"]; then
|
||||
GITEA_TEMP_DIR="/var/tmp";
|
||||
fi;
|
||||
if [ -z "${GITEA_BIN}" ]; then
|
||||
GITEA_BIN="/usr/local/bin/gitea";
|
||||
@@ -39,6 +43,10 @@ fi;
|
||||
if [ -z "${GITEA_CONFIG}" ]; then
|
||||
GITEA_CONFIG="/etc/gitea/app.ini"
|
||||
fi;
|
||||
# This one is not advertised in the config file as it is not recommended to change
|
||||
if [ -z "${GITEA_EXPORT_TYPE}" ]; then
|
||||
GITEA_EXPORT_TYPE="zip";
|
||||
fi;
|
||||
if [ ! -f "${GITEA_BIN}" ]; then
|
||||
echo "[! $(date +'%F %T')] Cannot find gitea binary";
|
||||
. "${DIR}/borg.backup.functions.close.sh" 1;
|
||||
@@ -49,6 +57,16 @@ if [ ! -f "${GITEA_CONFIG}" ]; then
|
||||
. "${DIR}/borg.backup.functions.close.sh" 1;
|
||||
exit 1;
|
||||
fi;
|
||||
# some basic checks with abort
|
||||
if [ ! -d "${GITEA_TEMP_DIR}" ]; then
|
||||
echo "Temp directory does not exist: ${GITEA_TEMP_DIR}";
|
||||
exit;
|
||||
fi;
|
||||
# we should check GITEA_EXPORT_TYPE too at some point for an allow list
|
||||
# At the moment warn if not zip
|
||||
if [ "${GITEA_EXPORT_TYPE}" != "zip" ]; then
|
||||
echo "[!!!!] The gitea export type has been changed from 'zip' to '${GITEA_EXPORT_TYPE}'. This can either break or make exports take very ling";
|
||||
fi;
|
||||
# Filename
|
||||
FILENAME="gitea.backup.zip";
|
||||
# backup set and prefix
|
||||
@@ -60,7 +78,7 @@ BORG_CALL=$(echo "${_BORG_CALL}" | sed -e "s/##FILENAME##/${FILENAME}/" | sed -e
|
||||
BORG_PRUNE=$(echo "${_BORG_PRUNE}" | sed -e "s/##BACKUP_SET_PREFIX##/${BACKUP_SET_PREFIX}/");
|
||||
printf "${PRINTF_SUB_BLOCK}" "BACKUP: git data and database" "$(date +'%F %T')" "${MODULE}";
|
||||
if [ ${DEBUG} -eq 1 ] || [ ${DRYRUN} -eq 1 ]; then
|
||||
echo "sudo -u ${GIT_USER} ${GITEA_BIN} dump -c ${GITEA_CONFIG} -w ${GITEA_TMP} -L -f - | ${BORG_CALL}";
|
||||
echo "sudo -u ${GIT_USER} ${GITEA_BIN} dump -c ${GITEA_CONFIG} -w ${GITEA_WORKING_DIR} -t ${GITEA_TEMP_DIR} --type ${GITEA_EXPORT_TYPE} -L -f - | ${BORG_CALL}";
|
||||
if [ -z "${ONE_TIME_TAG}" ]; then
|
||||
echo "${BORG_PRUNE}";
|
||||
fi;
|
||||
@@ -70,13 +88,13 @@ if [ ${DRYRUN} -eq 0 ]; then
|
||||
# below was an old workaround
|
||||
#export USER="${LOGNAME}" # workaround for broken gitea EUID check
|
||||
# make sure temp folder is there and is set as git. user
|
||||
if [ ! -d "${GITEA_TMP}" ]; then
|
||||
mkdir -p "${GITEA_TMP}";
|
||||
if [ ! -d "${GITEA_WORKING_DIR}" ]; then
|
||||
mkdir -p "${GITEA_WORKING_DIR}";
|
||||
fi;
|
||||
chown -R ${GIT_USER}. "${GITEA_TMP}";
|
||||
chown -R ${GIT_USER}. "${GITEA_WORKING_DIR}";
|
||||
# this needs to be run in a folder that can be stat by git user
|
||||
cd "${GITEA_TMP}";
|
||||
sudo -u ${GIT_USER} ${GITEA_BIN} dump -c ${GITEA_CONFIG} -w ${GITEA_TMP} -L -f - | ${BORG_CALL};
|
||||
cd "${GITEA_WORKING_DIR}";
|
||||
sudo -u ${GIT_USER} ${GITEA_BIN} dump -c ${GITEA_CONFIG} -w ${GITEA_WORKING_DIR} -t ${GITEA_TEMP_DIR} --type ${GITEA_EXPORT_TYPE} -L -f - | ${BORG_CALL};
|
||||
) 2>&1 | sed 's/\x1B\[[0-9;]\{1,\}[A-Za-z]//g' # remove all ESC strings
|
||||
fi;
|
||||
if [ -z "${ONE_TIME_TAG}" ]; then
|
||||
|
||||
@@ -93,6 +93,7 @@ if [ ! -z "${DATABASE_FULL_DUMP}" ]; then
|
||||
SCHEMA_ONLY='--no-data';
|
||||
schema_flag='schema';
|
||||
fi;
|
||||
LOCAL_START=$(date +'%s');
|
||||
printf "${PRINTF_SUBEXT_BLOCK}" "BACKUP" "all databases" "$(date +'%F %T')" "${MODULE}";
|
||||
# We only do a full backup and not per table backup here
|
||||
# Filename
|
||||
@@ -124,9 +125,12 @@ if [ ! -z "${DATABASE_FULL_DUMP}" ]; then
|
||||
echo "Prune repository with keep${KEEP_INFO:1}";
|
||||
${BORG_PRUNE};
|
||||
fi;
|
||||
DURATION=$[ $(date +'%s')-$LOCAL_START ];
|
||||
printf "${PRINTF_DB_RUN_TIME_SUB_BLOCK}" "DONE" "databases" "${MODULE}" "$(convert_time ${DURATION})";
|
||||
else
|
||||
${MYSQL_CMD} ${MYSQL_DB_CONFIG_PARAM} -B -N -e "show databases" |
|
||||
while read db; do
|
||||
LOCAL_START=$(date +'%s');
|
||||
printf "${PRINTF_DB_SUB_BLOCK}" "DB" "${db}" "${MODULE}";
|
||||
printf "${PRINTF_SUBEXT_BLOCK}" "BACKUP" "${db}" "$(date +'%F %T')" "${MODULE}";
|
||||
# exclude checks
|
||||
@@ -213,6 +217,8 @@ else
|
||||
else
|
||||
echo "- [E] ${db}";
|
||||
fi;
|
||||
DURATION=$[ $(date +'%s')-$LOCAL_START ];
|
||||
printf "${PRINTF_DB_RUN_TIME_SUB_BLOCK}" "DONE" "${db}" "${MODULE}" "$(convert_time ${DURATION})";
|
||||
done;
|
||||
fi;
|
||||
# run compact at the end if not a dry run
|
||||
|
||||
@@ -102,6 +102,7 @@ if [ ! -z "${DATABASE_FULL_DUMP}" ]; then
|
||||
SCHEMA_ONLY='-s';
|
||||
schema_flag='schema';
|
||||
fi;
|
||||
LOCAL_START=$(date +'%s');
|
||||
printf "${PRINTF_SUBEXT_BLOCK}" "BACKUP" "all databases" "$(date +'%F %T')" "${MODULE}";
|
||||
# Filename
|
||||
FILENAME-"all.${DB_USER}.NONE.${schema_flag}-${DB_VERSION}_${DB_HOST}_${DB_PORT}.c.sql"
|
||||
@@ -132,10 +133,13 @@ if [ ! -z "${DATABASE_FULL_DUMP}" ]; then
|
||||
echo "Prune repository with keep${KEEP_INFO:1}";
|
||||
${BORG_PRUNE};
|
||||
fi;
|
||||
DURATION=$[ $(date +'%s')-$LOCAL_START ];
|
||||
printf "${PRINTF_DB_RUN_TIME_SUB_BLOCK}" "DONE" "databases" "${MODULE}" "$(convert_time ${DURATION})";
|
||||
else
|
||||
# dump globals first
|
||||
db="pg_globals";
|
||||
schema_flag="data";
|
||||
LOCAL_START=$(date +'%s');
|
||||
printf "${PRINTF_SUBEXT_BLOCK}" "BACKUP" "${db}" "$(date +'%F %T')" "${MODULE}";
|
||||
# Filename
|
||||
FILENAME="${db}.${DB_USER}.NONE.${schema_flag}-${DB_VERSION}_${DB_HOST}_${DB_PORT}.c.sql"
|
||||
@@ -166,9 +170,11 @@ else
|
||||
echo "Prune repository with keep${KEEP_INFO:1}";
|
||||
${BORG_PRUNE};
|
||||
fi;
|
||||
printf "${PRINTF_DB_RUN_TIME_SUB_BLOCK}" "BACKUP" "${db}" "${MODULE}" "$(convert_time ${DURATION})";
|
||||
|
||||
# get list of tables
|
||||
for owner_db in $(${PG_PSQL} -U ${DB_USER} ${CONN_DB_HOST} ${CONN_DB_PORT} -d template1 -t -A -F "," -X -q -c "SELECT pg_catalog.pg_get_userbyid(datdba) AS owner, datname, pg_catalog.pg_encoding_to_char(encoding) AS encoding FROM pg_catalog.pg_database WHERE datname "\!"~ 'template(0|1)' ORDER BY datname;"); do
|
||||
LOCAL_START=$(date +'%s');
|
||||
# get the user who owns the DB too
|
||||
owner=$(echo ${owner_db} | cut -d "," -f 1);
|
||||
db=$(echo ${owner_db} | cut -d "," -f 2);
|
||||
@@ -265,6 +271,7 @@ else
|
||||
else
|
||||
echo "- [E] ${db}";
|
||||
fi;
|
||||
printf "${PRINTF_DB_RUN_TIME_SUB_BLOCK}" "DONE" "${db}" "${MODULE}" "$(convert_time ${DURATION})";
|
||||
done;
|
||||
fi;
|
||||
# run compact at the end if not a dry run
|
||||
|
||||
Reference in New Issue
Block a user