2020-11-09 13:27:06 +01:00
|
|
|
#!/bin/bash
|
2017-03-03 21:26:30 +01:00
|
|
|
|
2020-11-09 13:27:06 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-22 13:13:46 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2020-11-09 13:27:06 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-03-03 21:26:30 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-11-09 13:27:06 +01:00
|
|
|
#=================================================
|
2021-05-22 13:13:46 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2020-11-09 13:27:06 +01:00
|
|
|
#=================================================
|
2021-05-22 13:13:46 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
2020-11-09 13:27:06 +01:00
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2022-07-12 03:19:44 +02:00
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2020-11-09 13:27:06 +01:00
|
|
|
|
2022-07-12 03:19:44 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE DATA DIRECTORY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the data directory..."
|
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
ynh_restore_file --origin_path="$data_dir" --not_mandatory
|
2020-11-09 13:27:06 +01:00
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
chmod 750 "$data_dir"
|
|
|
|
chmod -R o-rwx "$data_dir"
|
|
|
|
chown -R $app:$app "$data_dir"
|
2021-05-23 09:48:04 +02:00
|
|
|
|
2022-07-12 03:19:44 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2021-05-23 09:48:04 +02:00
|
|
|
#=================================================
|
|
|
|
# BUILDING ZERONET
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Building zeronet..."
|
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
pushd "$install_dir"
|
2021-05-27 23:47:07 +02:00
|
|
|
python3 -m venv venv
|
|
|
|
venv/bin/pip install --upgrade pip
|
|
|
|
venv/bin/pip install -r requirements.txt
|
2021-05-23 09:48:04 +02:00
|
|
|
popd
|
2020-11-09 13:27:06 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the systemd configuration..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
|
2021-02-08 21:29:31 +01:00
|
|
|
systemctl enable $app.service --quiet
|
2020-11-09 13:27:06 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
|
|
|
|
2023-12-13 16:28:15 +01:00
|
|
|
yunohost service add $app --description="$app service" --log="$data_dir/log/debug-last.log" --needs_exposed_ports="$fs_port"
|
2020-11-09 13:27:06 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
|
|
|
|
2021-05-23 09:48:04 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Ui.UiServer Web interface" --timeout=120
|
2020-11-09 13:27:06 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-11-26 11:35:22 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..."
|
2020-11-09 13:27:06 +01:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-03-03 21:26:30 +01:00
|
|
|
|
2020-11-26 11:32:52 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for $app"
|