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

63 lines
2.5 KiB
Text
Raw Normal View History

2017-02-15 01:00:22 +01:00
#!/bin/bash
2017-08-29 02:34:05 +02:00
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
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression "Restoring phpMyAdmin main directory..."
2017-08-29 02:34:05 +02:00
ynh_restore "$install_dir"
2021-07-10 22:32:23 +02:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod 750 "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chmod -R o-rwx "$install_dir"
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:www-data "$install_dir"
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE THE MYSQL DATABASE
#=================================================
ynh_script_progression "Restoring the MySQL database..."
2017-08-29 02:34:05 +02:00
ynh_mysql_db_shell < ./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_db_shell <<< "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
2023-11-02 18:44:07 +01:00
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
2017-08-29 02:34:05 +02:00
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression "Restoring system configurations related to $app..."
# Restore the file first, so it can have a backup if different
ynh_restore "/etc/php/$php_version/fpm/pool.d/$app.conf"
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
2023-11-02 18:44:07 +01:00
# Recreate a dedicated php-fpm config
ynh_config_add_phpfpm
2017-08-29 02:34:05 +02:00
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
ynh_script_progression "Reloading NGINX web server..."
ynh_systemctl --service=nginx --action=reload
2019-02-17 20:58:14 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Restoration completed for $app"