mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
2151d81453
[this is a squashed merge from-] * Install owncoud 9.1 and provide an upgrade path from 8.2. This also disables memcached and goes with apc. The upgrade fails with memcached. * Remove php apc setting * Add dav migrations for each user * Add some comments to the code * When upgrading owncloud from 8.2.3 to 9.1.0 the backup of 8.2.3 was overwritten when going from 9.0 to 9.1 * Add upgrade path from 8.1.1. Only do an upgrade check if owncloud was previously installed. * Stop php5-fpm before owncloud upgrade to prevent database locks * Fix fail2ban tests for owncloud 9 * When upgrading owncloud copy the database to the user-data/owncloud-backup directory * Remove not need unzip directives during owncloud extraction. Directory is removed beforehand so a normal extraction is fine * Improve backup of owncloud installation and provide a post installation restore script. Update the owncloud version number to 9.1.1. Update the calendar and contacts apps to the latest versions * Separate the ownCloud upgrades visually in the console output.
50 lines
1.4 KiB
Bash
Executable File
50 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This script will restore the backup made during an installation
|
|
source /etc/mailinabox.conf # load global vars
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: owncloud-restore.sh <backup directory>"
|
|
echo
|
|
echo "WARNING: This will restore the database to the point of the installation!"
|
|
echo " This means that you will lose all changes made by users after that point"
|
|
echo
|
|
echo
|
|
echo "Backups are stored here: $STORAGE_ROOT/owncloud-backup/"
|
|
echo
|
|
echo "Available backups:"
|
|
echo
|
|
find $STORAGE_ROOT/owncloud-backup/* -maxdepth 0 -type d
|
|
echo
|
|
echo "Supply the directory that was created during the last installation as the only commandline argument"
|
|
exit
|
|
fi
|
|
|
|
if [ ! -f $1/config.php ]; then
|
|
echo "This isn't a valid backup location"
|
|
exit
|
|
fi
|
|
|
|
echo "Restoring backup from $1"
|
|
service php5-fpm stop
|
|
|
|
# remove the current owncloud installation
|
|
rm -rf /usr/local/lib/owncloud/
|
|
# restore the current owncloud application
|
|
cp -r "$1/owncloud-install" /usr/local/lib/owncloud
|
|
|
|
# restore access rights
|
|
chmod 750 /usr/local/lib/owncloud/{apps,config}
|
|
|
|
cp "$1/owncloud.db" $STORAGE_ROOT/owncloud/
|
|
cp "$1/config.php" $STORAGE_ROOT/owncloud/
|
|
|
|
ln -sf $STORAGE_ROOT/owncloud/config.php /usr/local/lib/owncloud/config/config.php
|
|
chown -f -R www-data.www-data $STORAGE_ROOT/owncloud /usr/local/lib/owncloud
|
|
chown www-data.www-data $STORAGE_ROOT/owncloud/config.php
|
|
|
|
sudo -u www-data php /usr/local/lib/owncloud/occ maintenance:mode --off
|
|
|
|
service php5-fpm start
|
|
echo "Done"
|