1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cryptpad_ynh.git synced 2024-09-03 18:26:14 +02:00
cryptpad_ynh/scripts/restore

52 lines
1.7 KiB
Text
Raw Normal View History

#!/bin/bash
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
2021-03-18 11:26:27 +01:00
# RESTORE THE APP MAIN DIR
#=================================================
ynh_script_progression "Restoring the app main directory..."
ynh_restore "$install_dir"
#=================================================
# APPLY FOLDER GROUP RIGHTS FOR WWW-DATA
#=================================================
2023-03-12 08:42:18 +01:00
2023-03-12 08:24:05 +01:00
chgrp -R www-data $install_dir
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
ynh_script_progression "Reinstalling dependencies..."
ynh_nodejs_install
2018-05-04 11:52:10 +02:00
#=================================================
2023-03-12 08:42:18 +01:00
# RESTORE SYSTEM CONFIGURATIONS
#=================================================
ynh_script_progression "Restoring system configurations related to $app..."
2023-03-12 08:42:18 +01:00
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_restore "/etc/systemd/system/$app.service"
2020-12-04 11:33:12 +01:00
systemctl enable $app.service --quiet
2020-12-04 11:33:12 +01:00
yunohost service add $app --description="Zero Knowledge realtime collaborative editor" --log="/var/log/$app/$app.log"
#=================================================
2023-03-12 08:42:18 +01:00
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
#=================================================
ynh_script_progression "Reloading NGINX web server and $app's service..."
2023-03-12 08:42:18 +01:00
ynh_systemctl --service=$app --action="start" --log_path=systemd --wait_until="server available"
ynh_systemctl --service=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Restoration completed for $app"