Browse Source

make adjustments to bring all pod backup scripts in sync

main
Charles Reid 3 years ago
parent
commit
5b855a575a
  1. 2
      scripts/backups/canary/pod-charlesreid1-canary.timer.j2
  2. 2
      scripts/backups/pod-charlesreid1-backups-cleanolderthan.service.j2
  3. 1
      scripts/backups/pod-charlesreid1-backups-wikidb.timer.j2
  4. 2
      scripts/backups/pod-charlesreid1-backups-wikifiles.service.j2
  5. 3
      scripts/backups/pod-charlesreid1-backups-wikifiles.timer.j2
  6. 23
      scripts/backups/wikidb_dump.sh
  7. 15
      scripts/backups/wikifiles_dump.sh
  8. 7
      scripts/mw/fix_LocalSettings.sh
  9. 6
      scripts/mw/fix_extensions_dir.sh
  10. 7
      scripts/mw/fix_skins.sh
  11. 67
      scripts/mysql/dump_database.sh

2
scripts/backups/canary/pod-charlesreid1-canary.timer.j2

@ -2,7 +2,7 @@ @@ -2,7 +2,7 @@
Description=Timer to run the pod-charlesreid1 backups canary
[Timer]
OnCalendar=*-*-* 8:03:00
OnCalendar=*-*-* 7:01:00
[Install]
WantedBy=timers.target

2
scripts/backups/pod-charlesreid1-backups-cleanolderthan.service.j2

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
[Unit]
Description=Clean files older than N days from the pod-charlesreid1 backups dir
Description=Clean pod-charlesreid1 backups older than N days
Requires=docker.service
After=docker.service

1
scripts/backups/pod-charlesreid1-backups-wikidb.timer.j2

@ -3,7 +3,6 @@ Description=Timer to back up the pod-charlesreid1 wiki database @@ -3,7 +3,6 @@ Description=Timer to back up the pod-charlesreid1 wiki database
[Timer]
OnCalendar=Sun *-*-* 2:02:00
#OnCalendar=*-*-* 2:02:00
[Install]
WantedBy=timers.target

2
scripts/backups/pod-charlesreid1-backups-wikifiles.service.j2

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
[Unit]
Description=Back up the pod-charlesreid1 wiki files
Description=Back up pod-charlesreid1 wiki files
Requires=docker.service
After=docker.service

3
scripts/backups/pod-charlesreid1-backups-wikifiles.timer.j2

@ -1,9 +1,8 @@ @@ -1,9 +1,8 @@
[Unit]
Description=Timer to back up the pod-charlesreid1 wiki files
Description=Timer to back up pod-charlesreid1 wiki files
[Timer]
OnCalendar=Sun *-*-* 2:08:00
#OnCalendar=*-*-* 2:08:00
[Install]
WantedBy=timers.target

23
scripts/backups/wikidb_dump.sh

@ -5,7 +5,8 @@ @@ -5,7 +5,8 @@
set -eux
CONTAINER_NAME="stormy_mysql"
STAMP="`date +"%Y%m%d"`"
DATESTAMP="`date +"%Y%m%d"`"
TIMESTAMP="`date +"%Y%m%d_%H%M%S"`"
function usage {
set +x
@ -20,7 +21,7 @@ function usage { @@ -20,7 +21,7 @@ function usage {
echo "Example:"
echo ""
echo " ./wikidb_dump.sh"
echo " (creates ${POD_CHARLESREID1_BACKUP_DIR}/20200101/wikidb_20200101.sql)"
echo " (creates ${POD_CHARLESREID1_BACKUP_DIR}/20200101/wikidb_20200101_HHMMSS.sql)"
echo ""
exit 1;
}
@ -36,25 +37,33 @@ fi @@ -36,25 +37,33 @@ fi
if [ "$#" == "0" ]; then
TARGET="wikidb_${STAMP}.sql"
BACKUP_TARGET="${POD_CHARLESREID1_BACKUP_DIR}/${STAMP}/${TARGET}"
TARGET="wikidb_${TIMESTAMP}.sql"
BACKUP_DIR="${POD_CHARLESREID1_BACKUP_DIR}/${DATESTAMP}"
BACKUP_TARGET="${BACKUP_DIR}/${TARGET}"
echo ""
echo "pod-charlesreid1: wikidb_dump.sh"
echo "--------------------------------"
echo ""
echo "Backup directory: ${POD_CHARLESREID1_BACKUP_DIR}"
echo "Backup directory: ${BACKUP_DIR}"
echo "Backup target: ${BACKUP_TARGET}"
echo ""
mkdir -p ${POD_CHARLESREID1_BACKUP_DIR}/${STAMP}
mkdir -p ${BACKUP_DIR}
DOCKER=$(which docker)
DOCKERX="${DOCKER} exec -t"
echo "Running mysqldump inside the mysql container"
${DOCKERX} ${CONTAINER_NAME} sh -c 'exec mysqldump wikidb --databases -uroot -p"$MYSQL_ROOT_PASSWORD"' 2>&1 | grep -v "Using a password" > ${BACKUP_TARGET}
# this works, except the first line is a stupid warning about passwords
${DOCKERX} ${CONTAINER_NAME} sh -c 'exec mysqldump wikidb --databases -uroot -p"$MYSQL_ROOT_PASSWORD" --default-character-set=binary' > ${BACKUP_TARGET}
# trim stupid first line warning
tail -n +2 ${BACKUP_TARGET} > ${BACKUP_TARGET}.tmp
mv ${BACKUP_TARGET}.tmp ${BACKUP_TARGET}
echo "Successfully wrote SQL dump to file: ${BACKUP_TARGET}"
echo "Done."
else

15
scripts/backups/wikifiles_dump.sh

@ -5,7 +5,8 @@ @@ -5,7 +5,8 @@
set -eux
CONTAINER_NAME="stormy_mw"
STAMP="`date +"%Y%m%d"`"
DATESTAMP="`date +"%Y%m%d"`"
TIMESTAMP="`date +"%Y%m%d_%H%M%S"`"
function usage {
set +x
@ -20,7 +21,7 @@ function usage { @@ -20,7 +21,7 @@ function usage {
echo "Example:"
echo ""
echo " ./wikifiles_dump.sh"
echo " (creates ${POD_CHARLESREID1_BACKUP_DIR}/20200101/wikifiles_20200101.tar.gz)"
echo " (creates ${POD_CHARLESREID1_BACKUP_DIR}/YYYYMMDD/wikifiles_YYYYMMDD_HHMMSS.tar.gz)"
echo ""
exit 1;
}
@ -36,18 +37,19 @@ fi @@ -36,18 +37,19 @@ fi
if [ "$#" == "0" ]; then
TARGET="wikifiles_${STAMP}.tar.gz"
BACKUP_TARGET="${POD_CHARLESREID1_BACKUP_DIR}/${STAMP}/${TARGET}"
TARGET="wikifiles_${TIMESTAMP}.tar.gz"
BACKUP_DIR="${POD_PRIVATE_WIKI_BACKUP_DIR}/${DATESTAMP}"
BACKUP_TARGET="${BACKUP_DIR}/${TARGET}"
echo ""
echo "pod-charlesreid1: wikifiles_dump.sh"
echo "-----------------------------------"
echo ""
echo "Backup directory: ${POD_CHARLESREID1_BACKUP_DIR}"
echo "Backup directory: ${BACKUP_DIR}"
echo "Backup target: ${BACKUP_TARGET}"
echo ""
mkdir -p ${POD_CHARLESREID1_BACKUP_DIR}/${STAMP}
mkdir -p ${BACKUP_DIR}
DOCKER=$(which docker)
DOCKERX="${DOCKER} exec -t"
@ -62,6 +64,7 @@ if [ "$#" == "0" ]; then @@ -62,6 +64,7 @@ if [ "$#" == "0" ]; then
echo "Step 3: Clean up tar.gz file"
${DOCKERX} ${CONTAINER_NAME} /bin/rm -f /tmp/${TARGET}
echo "Successfully wrote wikifiles dump to file: ${BACKUP_TARGET}"
echo "Done."
else

7
scripts/mw/fix_LocalSettings.sh

@ -1,13 +1,6 @@ @@ -1,13 +1,6 @@
#!/bin/bash
#
# fix LocalSettings.php in the mediawiki container.
#
# docker is stupid, so it doesn't let you bind mount
# a single file into a docker volume.
#
# so, rather than rebuilding the entire goddamn container
# just to update LocalSettings.php when it changes, we just
# use a docker cp command to copy it into the container.
set -eux
NAME="stormy_mw"

6
scripts/mw/fix_extensions_dir.sh

@ -1,12 +1,6 @@ @@ -1,12 +1,6 @@
#!/bin/bash
#
# fix extensions dir in the mediawiki container
#
# in theory, we should be able to update the
# extensions folder in d-mediawiki/charlesreid1-config,
# but in reality this falls on its face.
# So, we have to fix the fucking extensions directory
# ourselves.
set -eux
NAME="stormy_mw"

7
scripts/mw/fix_skins.sh

@ -1,13 +1,6 @@ @@ -1,13 +1,6 @@
#!/bin/bash
#
# fix skins in the mediawiki container.
#
# docker is stupid, so it doesn't let you bind mount
# a single file into a docker volume.
#
# so, rather than rebuilding the entire goddamn container
# just to update the skin when it changes, we just
# use a docker cp command to copy it into the container.
set -eux
NAME="stormy_mw"

67
scripts/mysql/dump_database.sh

@ -1,35 +1,36 @@ @@ -1,35 +1,36 @@
#!/bin/bash
echo "this script is deprecated, see ../backups/wikidb_dump.sh"
##
## Dump a database to an .sql file
## from the stormy_mysql container.
#set -eu
#
# Dump a database to an .sql file
# from the stormy_mysql container.
set -x
function usage {
echo ""
echo "dump_database.sh script:"
echo "Dump a database to an .sql file "
echo "from the stormy_mysql container."
echo ""
echo " ./dump_database.sh <sql-dump-file>"
echo ""
echo "Example:"
echo ""
echo " ./dump_database.sh /path/to/wikidb_dump.sql"
echo ""
echo ""
exit 1;
}
CONTAINER_NAME="stormy_mysql"
if [[ "$#" -gt 0 ]];
then
TARGET="$1"
mkdir -p $(dirname $TARGET)
docker exec -i ${CONTAINER_NAME} sh -c 'exec mysqldump wikidb --databases -uroot -p"$MYSQL_ROOT_PASSWORD"' > $TARGET
else
usage
fi
#function usage {
# echo ""
# echo "dump_database.sh script:"
# echo "Dump a database to an .sql file "
# echo "from the stormy_mysql container."
# echo ""
# echo " ./dump_database.sh <sql-dump-file>"
# echo ""
# echo "Example:"
# echo ""
# echo " ./dump_database.sh /path/to/wikidb_dump.sql"
# echo ""
# echo ""
# exit 1;
#}
#
#CONTAINER_NAME="stormy_mysql"
#
#if [[ "$#" -gt 0 ]];
#then
#
# TARGET="$1"
# mkdir -p $(dirname $TARGET)
# set -x
# docker exec -i ${CONTAINER_NAME} sh -c 'exec mysqldump wikidb --databases -uroot -p"$MYSQL_ROOT_PASSWORD"' > $TARGET
#
#else
# usage
#fi

Loading…
Cancel
Save