2016-07-10 13:11:55 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-10-20 13:46:23 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-07-11 00:25:18 +02:00
|
|
|
|
2020-10-20 13:46:23 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=2
|
|
|
|
|
2023-06-27 09:46:08 +02:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2020-10-20 13:46:23 +02:00
|
|
|
|
2023-06-27 09:46:08 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2023-12-11 07:52:21 +01:00
|
|
|
|
|
|
|
chmod 600 "$install_dir/settings.json"
|
|
|
|
chown $app:$app "$install_dir/settings.json"
|
|
|
|
|
|
|
|
chmod 600 "$install_dir/credentials.json"
|
|
|
|
chown $app:$app "$install_dir/credentials.json"
|
2021-05-28 23:43:59 +02:00
|
|
|
|
2020-12-05 18:19:36 +01:00
|
|
|
#=================================================
|
|
|
|
# REINSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
2023-06-27 09:54:56 +02:00
|
|
|
ynh_script_progression --message="Reinstalling dependencies..." --weight=7
|
2020-12-05 18:19:36 +01:00
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
|
2024-06-06 16:43:47 +02:00
|
|
|
pushd "$install_dir"
|
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_exec_warn_less env $ynh_node_load_PATH corepack enable && COREPACK_ENABLE_DOWNLOAD_PROMPT=0 corepack prepare pnpm@latest --activate
|
2024-04-11 11:08:30 +02:00
|
|
|
popd
|
|
|
|
|
2020-10-20 13:46:23 +02:00
|
|
|
#=================================================
|
2024-06-07 22:32:47 +02:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2020-10-20 13:46:23 +02:00
|
|
|
#=================================================
|
2024-06-07 22:32:47 +02:00
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2016-07-11 00:25:18 +02:00
|
|
|
|
2020-12-07 13:39:39 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
|
|
|
systemctl enable $app.service --quiet
|
2016-07-11 00:25:18 +02:00
|
|
|
|
2023-06-27 10:03:42 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2021-09-30 10:01:17 +02:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
|
|
|
yunohost service add $app --description="Collaborative editor" --log="/var/log/$app/$app.log"
|
|
|
|
|
2020-10-20 13:46:23 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=8
|
2016-07-11 00:25:18 +02:00
|
|
|
|
2020-12-23 13:31:51 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action=restart --log_path=systemd --line_match="Your Etherpad version is"
|
2016-07-11 00:25:18 +02:00
|
|
|
|
2020-10-20 13:46:23 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2016-07-11 00:25:18 +02:00
|
|
|
|
2020-10-20 13:46:23 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2016-07-11 00:25:18 +02:00
|
|
|
|
2023-09-09 09:03:21 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|