1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpmyadmin_ynh.git synced 2024-09-03 19:56:46 +02:00
phpmyadmin_ynh/scripts/restore

76 lines
2.6 KiB
Text
Raw Normal View History

2017-02-15 01:00:22 +01:00
#!/bin/bash
2017-08-29 02:34:05 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ../settings/scripts/_common.sh
2017-02-15 01:00:22 +01:00
source /usr/share/yunohost/helpers
2017-08-29 02:34:05 +02:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2019-05-18 14:04:40 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2020-10-04 09:58:12 +02:00
ynh_script_progression --message="Restoring phpMyAdmin main directory..."
2017-08-29 02:34:05 +02:00
ynh_restore_file --origin_path="$install_dir"
2017-08-29 02:34:05 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-07-10 22:32:23 +02:00
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
2019-04-13 18:26:29 +02:00
ynh_script_progression --message="Restoring the MySQL database..." --weight=4
2017-08-29 02:34:05 +02:00
2019-05-18 14:04:40 +02:00
ynh_mysql_connect_as --user=$db_name --password=$db_pwd --database=$db_name < ./db.sql
2017-02-15 01:00:22 +01:00
# Setup a privileged user for phpmyadmin (to prevent using MySQL root user)
2019-05-18 14:04:40 +02:00
if ! ynh_mysql_user_exists --user=$db_admin_user
then
ynh_mysql_create_user "$db_admin_user" "$db_admin_pwd"
ynh_mysql_execute_as_root --sql="GRANT ALL PRIVILEGES ON *.* TO '$db_admin_user'@'localhost' IDENTIFIED BY '$db_admin_pwd' WITH GRANT OPTION; FLUSH PRIVILEGES;" --database=mysql
fi
2019-02-17 15:42:09 +01:00
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
2017-02-15 01:00:22 +01:00
chown $app: $install_dir/tmp
2019-02-17 15:42:09 +01:00
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
2020-09-24 13:44:38 +02:00
ynh_script_progression --message="Reconfiguring PHP-FPM.." --weight=6
# Restore the file first, so it can have a backup if different
ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
# Recreate a dedicated php-fpm config
ynh_add_fpm_config
2017-08-29 02:34:05 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2020-09-24 13:44:38 +02:00
ynh_script_progression --message="Reloading NGINX web server..."
2019-04-13 18:26:29 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-17 20:58:14 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-07-08 08:42:29 +02:00
ynh_script_progression --message="Restoration completed for $app" --last