1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yunorunner_ynh.git synced 2024-09-03 20:36:13 +02:00
yunorunner_ynh/scripts/upgrade

209 lines
6.5 KiB
Text
Raw Normal View History

2018-08-26 19:04:08 +02:00
#!/bin/bash
#=================================================
2019-02-14 19:46:11 +01:00
# GENERIC START
2018-08-26 19:04:08 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
ynh_script_progression --message="Loading installation settings..."
2018-08-26 19:04:08 +02:00
app=$YNH_APP_INSTANCE_NAME
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)
port=$(ynh_app_setting_get --app=$app --key=port)
2018-08-26 19:04:08 +02:00
#=================================================
# CHECK VERSION
#=================================================
ynh_script_progression --message="Checking version..."
2018-08-26 19:04:08 +02:00
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..."
2018-08-26 19:04:08 +02:00
# If port doesn't exist, create it
if [ -z "$port" ]; then
port=4242
ynh_app_setting_set $app port $port
fi
if [[ ! -d "$final_path/.git/" ]]
then
git init "$final_path"
pushd "$final_path"
git remote add origin "$yunorunner_repository"
popd
fi
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
# Remove Pythonz
ynh_secure_remove --file="$final_path/.pythonz"
2019-02-14 20:21:06 +01:00
#=================================================
# CLOSE A PORT
#=================================================
if yunohost firewall list | grep -q "\- $port$"
then
ynh_script_progression --message="Closing port $port"
2019-02-14 20:21:06 +01:00
ynh_exec_warn_less yunohost firewall disallow TCP $port
fi
2018-08-26 19:04:08 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
2018-08-26 19:04:08 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
# Restore it if the upgrade fails
2018-08-26 19:04:08 +02:00
ynh_restore_upgradebackup
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# ACTIVATE MAINTENANCE MODE
#=================================================
ynh_maintenance_mode_ON
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..."
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd" --line_match="Stopped YunoRunner CI"
2021-04-10 17:46:40 +02:00
#=================================================
# CREATE DEDICATED USER
#=================================================
ynh_script_progression --message="Making sure dedicated system user exists..."
# Create a dedicated user (if not existing)
ynh_system_user_create --username=$app --home_dir="$final_path"
2018-08-26 19:04:08 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..."
# Download, check integrity, uncompress and patch the source from app.src
pushd "$final_path"
git fetch --quiet --depth=1 origin "$yunorunner_release"
git reset --quiet --hard FETCH_HEAD
popd
fi
2018-08-26 19:04:08 +02:00
2021-04-15 20:30:26 +02:00
chmod -R 750 "$final_path"
2021-04-10 17:46:40 +02:00
chmod -R o-rwx "$final_path"
2021-04-11 22:11:16 +02:00
chown -R $app:$app "$final_path"
2021-04-10 17:46:40 +02:00
2018-08-26 19:04:08 +02:00
#=================================================
2019-02-14 19:46:11 +01:00
# NGINX CONFIGURATION
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..."
2018-08-26 19:04:08 +02:00
# Create a dedicated NGINX config
2019-02-14 19:46:11 +01:00
ynh_add_nginx_config
2018-08-26 19:04:08 +02:00
#=================================================
2019-02-14 19:46:11 +01:00
# UPGRADE DEPENDENCIES
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Upgrading dependencies..."
2018-08-26 19:04:08 +02:00
ynh_install_app_dependencies $pkg_dependencies
2018-08-26 19:04:08 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
# INSTALL PYTHON DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing Python dependencies..."
pushd $final_path
python3 -m venv venv
venv/bin/pip install --upgrade pip
venv/bin/pip install -r requirements-frozen.txt
#Fix current websocket version error (2019-02-14)
venv/bin/pip uninstall -y websockets
venv/bin/pip install 'websockets>=6.0,<7.0'
popd
#=================================================
2021-04-10 17:46:40 +02:00
# UPDATE A CONFIG FILE
#=================================================
2021-04-10 17:46:40 +02:00
ynh_script_progression --message="Updating a config file..."
ynh_add_config --template="yunorunner.config.py" --destination="$final_path/config.py"
2021-04-10 17:46:40 +02:00
chmod 400 "$final_path/config.py"
chown $app:$app "$final_path/config.py"
2021-04-11 22:11:16 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Upgrading systemd configuration..."
# Create a dedicated systemd config
ynh_add_systemd_config
2018-08-26 19:04:08 +02:00
#=================================================
2019-02-14 19:46:11 +01:00
# GENERIC FINALIZATION
2018-08-26 19:04:08 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
2018-08-26 19:04:08 +02:00
yunohost service add $app --description="$app daemon for YunoRunner"
2018-08-26 19:04:08 +02:00
#=================================================
# START SYSTEMD SERVICE
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Starting a systemd service..."
2018-08-26 19:04:08 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Started YunoRunner CI"
2018-08-26 19:04:08 +02:00
2018-08-26 19:36:20 +02:00
#=================================================
# DEACTIVE MAINTENANCE MODE
2018-08-26 19:36:20 +02:00
#=================================================
ynh_maintenance_mode_OFF
2018-08-26 19:36:20 +02:00
2018-08-26 19:04:08 +02:00
#=================================================
# RELOAD NGINX
2018-08-26 19:04:08 +02:00
#=================================================
ynh_script_progression --message="Reloading NGINX web server..."
2018-08-26 19:04:08 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-14 19:46:11 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed"