2021-08-18 12:10:29 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#
|
|
|
|
# ScoDoc: save all user data (database, configs, images, archives...) in separate directory
|
|
|
|
#
|
|
|
|
# Utile pour migrer les données ScoDoc 7 vers ScoDoc 9
|
|
|
|
# Executer en tant que root sur le serveur d'origine
|
|
|
|
#
|
|
|
|
# E. Viennet, Sept 2011, Aug 2020, Aug 21
|
|
|
|
#
|
|
|
|
source utils.sh
|
|
|
|
|
|
|
|
# Destination directory
|
|
|
|
if [ ! $# -eq 1 ]
|
|
|
|
then
|
|
|
|
echo "Usage: $0 destination_directory"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
DEST=$1
|
|
|
|
# remove trailing slashs if needed:
|
|
|
|
shopt -s extglob
|
|
|
|
DEST="${DEST%%+(/)}"
|
|
|
|
|
|
|
|
if [ ! -e "$DEST" ]
|
|
|
|
then
|
|
|
|
echo Creating directory "$DEST"
|
|
|
|
mkdir "$DEST"
|
|
|
|
else
|
|
|
|
echo "Error: Directory " "$DEST" " exists"
|
|
|
|
echo "remove it or specify another destination !"
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
|
|
|
|
INSTANCE_DIR=/opt/scodoc
|
|
|
|
SCODOC_DIR="$INSTANCE_DIR/Products/ScoDoc"
|
|
|
|
|
|
|
|
source utils.sh
|
|
|
|
check_uid_root "$0"
|
|
|
|
|
|
|
|
echo "Stopping ScoDoc..."
|
|
|
|
scodocctl stop
|
|
|
|
|
|
|
|
# Dump all postgres databases
|
|
|
|
|
|
|
|
echo "Dumping SQL databases..."
|
|
|
|
chown postgres "$DEST"
|
2021-08-18 13:11:03 +02:00
|
|
|
for cfgfile in "$INSTANCE_DIR"/var/scodoc/config/depts/*cfg USERS
|
2021-08-18 12:10:29 +02:00
|
|
|
do
|
2021-08-18 13:11:03 +02:00
|
|
|
cfgfile=$(basename "$cfgfile")
|
2021-08-18 12:10:29 +02:00
|
|
|
dept="${cfgfile%*.cfg}"
|
2021-08-18 18:46:54 +02:00
|
|
|
db_name=$(echo "SCO$dept" | tr "[:lower:]" "[:upper:]")
|
2021-08-18 12:10:29 +02:00
|
|
|
echo "$db_name"
|
2021-08-18 13:11:03 +02:00
|
|
|
su -c "pg_dump --format=custom --file=\"$DEST/$db_name.dump\" \"$db_name\"" postgres
|
2021-08-18 12:10:29 +02:00
|
|
|
if [ ! "$?" -eq 0 ]
|
|
|
|
then
|
|
|
|
printf "Error dumping postgresql database\nPlease check that SQL server is running\nAborting."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
chown root "$DEST"
|
|
|
|
|
|
|
|
# Zope DB, ScoDoc archives, configuration, photos, etc.
|
|
|
|
echo "Copying var/ ..."
|
|
|
|
cp -rp "$INSTANCE_DIR/var" "$DEST"
|
|
|
|
|
|
|
|
echo "Copying logos..."
|
|
|
|
cp -rp "$SCODOC_DIR/logos" "$DEST"
|
|
|
|
|
|
|
|
echo "Copying configuration file..."
|
2021-08-18 18:46:54 +02:00
|
|
|
mkdir "$DEST/config"
|
|
|
|
cp -p "$SCODOC_DIR/config/scodoc_config.py" "$DEST/config/"
|
|
|
|
cp -rp "$SCODOC_DIR/config/doc_poursuites_etudes" "$DEST/config/"
|
2021-08-18 12:10:29 +02:00
|
|
|
|
|
|
|
echo "Copying server logs..."
|
|
|
|
cp -rp "$INSTANCE_DIR/log" "$DEST"
|
|
|
|
|
|
|
|
|
|
|
|
# --- Archive all files in a tarball to ease transfer
|
|
|
|
echo
|
|
|
|
echo "Archiving backup files in a $DEST.tgz..."
|
|
|
|
base=$(basename "$DEST")
|
|
|
|
(cd "$DEST"/.. || terminate "directory error"; tar cfz "$DEST".tgz "$base")
|
|
|
|
|
|
|
|
echo "Done (you can copy " "$DEST"".tgz to destination machine)."
|