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

67 lines
2.2 KiB
Text
Raw Permalink Normal View History

2019-02-23 11:06:32 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Restoring $app main directory..." --weight=5
2019-02-23 11:06:32 +01:00
2023-03-14 16:44:09 +01:00
ynh_restore_file --origin_path="$install_dir"
2019-02-23 11:06:32 +01:00
2023-03-14 16:44:09 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-08-02 08:23:59 +02:00
2020-05-30 21:03:54 +02:00
#=================================================
# RESTORE THE CONFIG
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Restoring the config path..." --weight=2
2020-05-30 21:03:54 +02:00
2023-03-14 16:44:09 +01:00
ynh_restore_file --origin_path="$data_dir" --not_mandatory
2020-05-30 21:03:54 +02:00
2023-03-14 16:44:09 +01:00
chown -R $app:www-data "$data_dir"
2020-05-30 19:18:05 +02:00
2019-02-23 11:06:32 +01:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2023-03-14 16:52:36 +01:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=7
2019-02-23 11:06:32 +01:00
2020-05-27 17:03:30 +02:00
# Install Nodejs
2020-05-29 22:51:48 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2020-05-27 17:03:30 +02:00
2019-02-23 11:06:32 +01:00
#=================================================
# RESTORE SYSTEMD
#=================================================
2024-04-07 09:46:39 +02:00
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-02-23 11:06:32 +01:00
2019-10-25 11:04:41 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
2020-12-04 14:07:23 +01:00
systemctl enable $app.service --quiet
2019-02-23 11:06:32 +01:00
2020-12-14 11:14:10 +01:00
yunohost service add $app --description="Client Web IRC" --log="/var/log/$app/$app.log"
2019-10-25 11:04:41 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2019-10-25 11:04:41 +02:00
2021-08-30 22:37:35 +02:00
ynh_systemd_action --service_name=$app --action=start --log_path=systemd
2019-10-25 11:04:41 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-23 11:06:32 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-11-23 08:28:18 +01:00
ynh_script_progression --message="Restoration completed for $app" --last