1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/roundcube_ynh.git synced 2024-09-03 20:16:28 +02:00
roundcube_ynh/scripts/restore

108 lines
3.3 KiB
Text
Raw Normal View History

2017-06-02 17:15:57 +02:00
#!/bin/bash
2017-08-26 03:24:41 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
2017-08-26 03:24:41 +02:00
#=================================================
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
2017-08-26 03:24:41 +02:00
#=================================================
ynh_clean_setup () {
#### Remove this function if there's nothing to clean before calling the remove script.
true
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2017-06-02 17:15:57 +02:00
app=$YNH_APP_INSTANCE_NAME
2017-08-26 03:24:41 +02:00
domain=$(ynh_app_setting_get $app domain)
path_url=$(ynh_app_setting_get $app path)
final_path=$(ynh_app_setting_get $app final_path)
db_name=$(ynh_app_setting_get $app db_name)
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
ynh_webpath_available $domain $path_url \
|| ynh_die "Path not available: ${domain}${path_url}"
test ! -d $final_path \
|| ynh_die "There is already a directory: $final_path "
2018-05-26 18:24:50 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
# jessie-backports is needed for php-net-ldap3
if [ "$(lsb_release --codename --short)" = "jessie" ]; then
grep -q -R 'jessie-backports' /etc/apt/sources.list{,.d} || {
echo "deb http://httpredir.debian.org/debian jessie-backports main" \
| tee -a /etc/apt/sources.list.d/backports.list >/dev/null
}
fi
ynh_install_app_dependencies "$pkg_dependencies"
2017-08-26 03:24:41 +02:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_restore_file "$final_path"
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
ynh_mysql_setup_db $db_name $db_name $db_pwd
ynh_mysql_connect_as $db_name $db_pwd $db_name < ./db.sql
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
# Create the dedicated user (if not existing)
2017-06-02 17:15:57 +02:00
ynh_system_user_create $app
2017-08-26 03:24:41 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
# Restore permissions on app files
chown -R root: "$final_path"
chown -R $app: "${final_path}/temp/" "${final_path}/logs/"
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
ynh_restore_file "/etc/php5/fpm/pool.d/$app.conf"
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
#=================================================
# GENERIC FINALISATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2017-06-02 17:15:57 +02:00
2017-08-26 03:24:41 +02:00
systemctl reload php5-fpm
systemctl reload nginx