2019-01-28 19:15:11 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-03-23 20:16:47 +01:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-01-28 19:15:11 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2021-04-10 01:14:00 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2021-04-10 01:14:00 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2019-01-29 01:59:40 +01:00
|
|
|
|
2022-01-05 03:58:46 +01:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the data directory..."
|
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2022-01-05 03:58:46 +01:00
|
|
|
|
2023-08-15 12:19:13 +02:00
|
|
|
chown -R $app:www-data "$data_dir"
|
2022-01-05 03:58:46 +01:00
|
|
|
|
2019-03-14 00:35:51 +01:00
|
|
|
#=================================================
|
|
|
|
# CREATE LOG FOLDER
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Creating log folder..."
|
2019-03-14 00:35:51 +01:00
|
|
|
|
|
|
|
mkdir -p "/var/log/$app"
|
2022-01-05 03:58:46 +01:00
|
|
|
chmod 750 "/var/log/$app"
|
|
|
|
chmod -R o-rwx "/var/log/$app"
|
2021-01-23 09:49:58 +01:00
|
|
|
chown -R $app:$app "/var/log/$app"
|
2019-03-14 00:35:51 +01:00
|
|
|
|
2023-08-15 12:31:35 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2021-03-23 20:16:47 +01:00
|
|
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
2019-02-03 05:28:53 +01:00
|
|
|
|
2019-04-24 03:11:53 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2020-12-11 09:23:59 +01:00
|
|
|
systemctl enable $app.service --quiet
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2022-01-05 03:58:46 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
|
|
|
|
|
2021-01-23 09:45:50 +01:00
|
|
|
yunohost service add $app --description="Distributed pastebin" --log="/var/log/$app/$app.log"
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2019-05-15 01:57:52 +02:00
|
|
|
|
2023-08-03 01:19:34 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="Started"
|
2022-01-05 03:58:46 +01:00
|
|
|
|
2019-12-29 22:13:51 +01:00
|
|
|
if [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
|
|
|
|
sleep 60
|
|
|
|
fi
|
2019-05-15 01:57:52 +02:00
|
|
|
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2021-04-13 01:13:34 +02:00
|
|
|
# RELOAD NGINX
|
2019-01-28 19:15:11 +01:00
|
|
|
#=================================================
|
2020-12-11 09:23:59 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2019-01-28 19:15:11 +01:00
|
|
|
|
2019-05-15 01:57:52 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-11 04:34:08 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-08-08 20:21:09 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app"
|