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

56 lines
1.9 KiB
Text
Raw Normal View History

2021-03-16 23:36:39 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2021-03-16 23:36:39 +01:00
ynh_restore_file --origin_path="$install_dir"
2021-03-16 23:36:39 +01:00
chown -R $app:www-data "$install_dir"
2022-06-21 02:28:49 +02:00
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
2022-06-21 02:28:49 +02:00
#=================================================
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
2022-06-21 02:28:49 +02:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2021-03-22 20:30:56 +01:00
# Restore permissions on app files
2021-04-18 03:40:36 +02:00
set_permissions
2021-03-23 23:57:30 +01:00
2021-03-16 23:36:39 +01:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable $app.service --quiet
2022-06-27 22:47:05 +02:00
ynh_use_logrotate --non-append
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
2023-08-27 22:37:20 +02:00
yunohost service add $app --description="Alternative front-end for Twitter" --log="/var/log/$app/$app.log"
2021-03-16 23:36:39 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-03-16 23:36:39 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Restoration completed for $app" --last