1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mygpo_ynh.git synced 2024-09-03 19:55:52 +02:00
mygpo_ynh/scripts/upgrade

181 lines
7.3 KiB
Text
Raw Normal View History

2014-10-20 18:55:53 +02:00
#!/bin/bash
2017-06-02 18:44:37 +02:00
#=================================================
2017-06-17 18:02:28 +02:00
# GENERIC START
2017-06-02 18:44:37 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2017-06-05 13:06:35 +02:00
source _common.sh
2017-06-02 18:44:37 +02:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
app=$YNH_APP_INSTANCE_NAME
2014-10-20 18:55:53 +02:00
2019-04-16 00:32:39 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2017-06-02 18:44:37 +02:00
2019-04-18 19:58:47 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2017-08-28 23:55:51 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=1
2017-08-28 23:55:51 +02:00
2017-09-05 17:48:23 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
2017-08-28 23:55:51 +02:00
ynh_clean_setup () {
2020-08-02 16:00:17 +02:00
# Restore it if the upgrade fails
2017-09-05 17:48:23 +02:00
ynh_restore_upgradebackup
2017-08-28 23:55:51 +02:00
}
2017-09-05 17:48:23 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-08-28 23:55:51 +02:00
2017-06-02 18:44:37 +02:00
#=================================================
# STANDARD UPGRADE STEPS
2019-05-02 20:44:22 +02:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Stopping systemd services..." --weight=1
2019-05-02 20:44:22 +02:00
2021-03-15 01:36:28 +01:00
ynh_systemd_action --service_name=$app.socket --action="stop" --log_path="/var/log/$app/$app.log"
2019-05-02 20:44:22 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
2021-03-15 01:36:28 +01:00
ynh_systemd_action --service_name=$app-beat --action="stop" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app-celery --action="stop" --log_path="/var/log/$app/$app.log"
systemctl disable $app.socket --quiet
systemctl disable $app --quiet
systemctl disable $app-beat --quiet
systemctl disable $app-celery --quiet
2019-05-02 20:44:22 +02:00
2017-06-02 18:44:37 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-04-18 19:58:47 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2019-04-18 19:58:47 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
fi
2017-06-02 18:44:37 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2017-06-02 18:44:37 +02:00
2020-08-02 16:00:17 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2018-06-28 22:05:35 +02:00
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Upgrading dependencies..." --weight=1
2018-06-28 22:05:35 +02:00
2019-03-05 23:11:52 +01:00
ynh_install_app_dependencies $pkg_dependencies
2017-06-02 18:44:37 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Making sure dedicated system user exists..." --weight=1
2017-06-02 18:44:37 +02:00
2018-07-01 09:57:16 +02:00
# Create a dedicated user (if not existing)
2019-04-16 00:32:39 +02:00
ynh_system_user_create --username=$app
2017-06-02 18:44:37 +02:00
#=================================================
2021-03-15 01:36:28 +01:00
# SPECIFIC UPGRADE
#=================================================
# UPDATE VIRTUALENV
2017-06-02 18:44:37 +02:00
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Upgrading Python virtualenv..." --weight=2
2017-06-02 18:44:37 +02:00
2021-03-30 15:34:35 +02:00
env_path=$final_path/envs/prod
mkdir -p $env_path
2021-03-15 01:36:28 +01:00
pushd $final_path || ynh_die
chown -R $app:$app $final_path
sudo -u $app python3 -m venv $final_path/venv
2021-03-30 07:11:10 +02:00
sudo -u $app $final_path/venv/bin/pip --cache-dir $final_path/.cache/pip install -U wheel pip --cache-dir $final_path/.cache/pip setuptools
sudo -u $app $final_path/venv/bin/pip --cache-dir $final_path/.cache/pip install -U --requirement $final_path/requirements.txt
sudo -u $app $final_path/venv/bin/pip --cache-dir $final_path/.cache/pip install -U --requirement $final_path/requirements-setup.txt
sudo -u $app $final_path/venv/bin/pip --cache-dir $final_path/.cache/pip install -U --requirement $final_path/requirements-ynh.txt
chown -R root:root $final_path
2021-03-15 01:36:28 +01:00
popd || ynh_die
2017-06-02 18:44:37 +02:00
#=================================================
2021-03-15 01:36:28 +01:00
# PERFORM DATABASE MIGRATIONS
2017-06-02 18:44:37 +02:00
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Performing database migrations..." --weight=2
pushd $final_path || ynh_die
2021-03-30 07:08:23 +02:00
chown -R $app:$app $final_path
2021-03-30 06:34:10 +02:00
sudo -u $app $final_path/venv/bin/envdir $env_path $final_path/venv/bin/python $final_path/manage.py makemigrations
sudo -u $app $final_path/venv/bin/envdir $env_path $final_path/venv/bin/python $final_path/manage.py migrate
chown -R root:root $final_path
2021-03-15 01:36:28 +01:00
popd || ynh_die
2017-06-02 18:44:37 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
# Create a dedicated systemd config
ynh_add_systemd_config
2021-03-15 01:36:28 +01:00
ynh_add_systemd_config --service="$app-socket" --template systemd.socket
ynh_add_systemd_config --service="$app-celery" --template systemd-celery.service
ynh_add_systemd_config --service="$app-beat" --template systemd-beat.service
systemctl disable "$app-socket.service" --quiet
mv "/etc/systemd/system/$app-socket.service" "/etc/systemd/system/$app.socket"
systemctl daemon-reload --quiet
2017-06-02 18:44:37 +02:00
#=================================================
# GENERIC FINALIZATION
2017-06-02 18:44:37 +02:00
#=================================================
# SECURE FILES AND DIRECTORIES
2017-06-02 18:44:37 +02:00
#=================================================
# Set permissions on app files
chown -R root:$app $final_path
2021-03-31 17:02:15 +02:00
chmod -R g=u,g-w,o-rwx $final_path
setfacl -n -R -m user:www-data:rx -m default:user:www-data:rx $final_path
setfacl -n -R -m user:www-data:- -m default:user:www-data:- $final_path/envs
chown -R $app:$app $datadir
chmod o-rwx $datadir
setfacl -n -R -m user:www-data:rx -m default:user:www-data:rx $datadir
2017-06-02 18:44:37 +02:00
#=================================================
2020-06-16 23:07:13 +02:00
# INTEGRATE SERVICE IN YUNOHOST
2017-06-02 18:44:37 +02:00
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2017-06-02 18:44:37 +02:00
2021-03-15 01:36:28 +01:00
yunohost service add $app --description="Manage podcast subscriptions, and sync them between apps and devices" --log="/var/log/$app/$app.log"
2017-06-02 18:44:37 +02:00
2019-05-02 20:44:22 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Starting systemd services..." --weight=1
2019-04-18 19:58:47 +02:00
2021-03-15 01:36:28 +01:00
ynh_systemd_action --service_name=$app-celery --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app-beat --action="start" --log_path="/var/log/$app/$app.log"
ynh_systemd_action --service_name=$app.socket --action="start" --log_path="/var/log/$app/$app.log"
2019-04-18 19:58:47 +02:00
2017-06-02 18:44:37 +02:00
#=================================================
# RELOAD NGINX
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2017-06-02 18:44:37 +02:00
2019-04-18 19:58:47 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-10 15:02:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-03-15 01:36:28 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last