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

167 lines
5.8 KiB
Text
Raw Normal View History

2019-01-20 12:36:14 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2019-08-14 00:07:10 +02:00
source _common.sh
2019-01-20 12:36:14 +01:00
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_script_progression --message="Loading installation settings..." --weight=3
2019-01-20 12:36:14 +01:00
2023-11-27 17:13:12 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2019-01-20 12:36:14 +01:00
2023-11-27 17:13:12 +01:00
#REMOVEME? domain=$(ynh_app_setting_get --app=$app --key=domain)
#REMOVEME? path=$(ynh_app_setting_get --app=$app --key=path)
#REMOVEME? admin=$(ynh_app_setting_get --app=$app --key=admin)
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? port=$(ynh_app_setting_get --app=$app --key=port)
#REMOVEME? port_hub=$(ynh_app_setting_get --app=$app --key=port_hub)
#REMOVEME? port_http_proxy=$(ynh_app_setting_get --app=$app --key=port_http_proxy)
#REMOVEME? enable_terminal=$(ynh_app_setting_get --app=$app --key=enable_terminal)
2019-08-14 00:07:10 +02:00
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2019-01-20 12:36:14 +01:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_script_progression --message="Backing up the app before upgrading (may take a while)..." --weight=48
2019-01-20 12:36:14 +01:00
2019-08-14 00:07:10 +02:00
# Backup the current version of the app
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_backup_before_upgrade
#REMOVEME? ynh_clean_setup () {
2019-08-14 00:07:10 +02:00
ynh_clean_check_starting
2022-03-11 00:23:07 +01:00
# Restore it if the upgrade fails
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_restore_upgradebackup
2019-08-14 00:07:10 +02:00
}
2019-01-20 12:36:14 +01:00
# Exit if an error occurs during the execution of the script
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_abort_if_errors
2019-01-20 12:36:14 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
2019-01-20 12:36:14 +01:00
#=================================================
2020-12-20 11:52:54 +01:00
ynh_script_progression --message="Stopping a systemd service..." --weight=2
2019-01-20 12:36:14 +01:00
2019-08-14 00:07:10 +02:00
ynh_systemd_action --service_name=$app --action="stop"
2019-01-20 12:36:14 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
# ENSURE DOWNWARD COMPATIBILITY
2019-01-20 12:36:14 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
ynh_script_progression --message="Ensuring downward compatibility..."
2019-01-20 12:36:14 +01:00
2023-11-27 17:13:12 +01:00
# If install_dir doesn't exist, create it
if [ -z "$install_dir" ]; then
#REMOVEME? install_dir=/opt/$app
mkdir -p $install_dir
#REMOVEME? ynh_app_setting_set --app=$app --key=install_dir --value=$install_dir
2022-03-11 00:23:07 +01:00
fi
# Cleaning legacy permissions
2023-11-27 17:13:12 +01:00
#REMOVEME? if ynh_legacy_permissions_exists; then
#REMOVEME? ynh_legacy_permissions_delete_all
2022-03-11 00:23:07 +01:00
ynh_app_setting_delete --app=$app --key=is_public
fi
2019-01-20 12:36:14 +01:00
2020-12-20 11:52:54 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
# NGINX CONFIGURATION
2020-12-20 11:52:54 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2020-12-20 11:52:54 +01:00
2022-03-11 00:23:07 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2020-12-20 11:52:54 +01:00
2019-01-20 12:36:14 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# UPGRADE DEPENDENCIES
2019-01-20 12:36:14 +01:00
#=================================================
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_script_progression --message="Upgrading dependencies..." --weight=10
2019-08-14 00:07:10 +02:00
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_install_app_dependencies $pkg_dependencies
2020-04-27 13:22:30 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2022-03-11 00:23:07 +01:00
ynh_use_nodejs
2023-07-11 16:34:57 +02:00
$ynh_npm install -g configurable-http-proxy npm
2019-01-20 12:36:14 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
# SPECIFIC UPGRADE
#=================================================
# BUILD APP
2019-01-20 12:36:14 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2022-03-11 00:23:07 +01:00
ynh_script_progression --message="Building app..." --weight=160
2019-08-14 00:07:10 +02:00
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_secure_remove $install_dir/.venv
python3 -m venv $install_dir/venv
source $install_dir/venv/bin/activate
2023-07-11 11:54:14 +02:00
2023-11-27 17:13:12 +01:00
pushd $install_dir
2023-07-11 14:57:46 +02:00
ynh_exec_warn_less pip install jupyterlab==$jupyterlab_version jupyterhub notebook jupyter_collaboration jupyterhub-ldapauthenticator pyzmq
2019-08-14 00:07:10 +02:00
popd
fi
2019-01-20 12:36:14 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
# UPDATE A CONFIG FILE
2019-01-20 12:36:14 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
ynh_script_progression --message="Updating a configuration file..."
2019-01-20 12:36:14 +01:00
2023-11-27 17:13:12 +01:00
mkdir -p "$install_dir/config"
2020-01-25 12:54:13 +01:00
2023-11-27 17:13:12 +01:00
path=${path%/}
2019-01-20 12:36:14 +01:00
2023-11-27 17:13:12 +01:00
ynh_add_config --template="../conf/jupyterhub_config.py" --destination="$install_dir/config/jupyterhub_config.py"
2019-08-14 00:07:10 +02:00
2023-11-27 17:13:12 +01:00
ynh_add_config --template="../conf/jupyter_notebook_config.py" --destination="$install_dir/config/jupyter_notebook_config.py"
2019-01-20 12:36:14 +01:00
2023-11-27 17:13:12 +01:00
chown -R root: $install_dir/
chown -R $admin: $install_dir/venv/
2022-03-11 00:23:07 +01:00
2019-01-20 12:36:14 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2019-08-18 00:02:04 +02:00
ynh_script_progression --message="Upgrading systemd configuration..."
2019-01-20 12:36:14 +01:00
# Create a dedicated systemd config
2019-08-14 00:07:10 +02:00
ynh_add_systemd_config
2019-01-20 12:36:14 +01:00
#=================================================
# GENERIC FINALIZATION
2019-08-14 00:07:10 +02:00
#=================================================
2022-03-11 00:23:07 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2020-12-20 11:33:16 +01:00
#=================================================
2022-03-11 00:23:07 +01:00
ynh_script_progression --message="Integrating service in YunoHost..."
2020-12-20 11:33:16 +01:00
2022-03-13 13:32:43 +01:00
yunohost service add $app --description="$app daemon"
2020-12-20 11:33:16 +01:00
2019-01-20 12:36:14 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# START SYSTEMD SERVICE
2019-01-20 12:36:14 +01:00
#=================================================
2019-08-18 00:02:04 +02:00
ynh_script_progression --message="Starting a systemd service..."
2019-01-20 12:36:14 +01:00
2022-03-11 00:23:07 +01:00
ynh_systemd_action --service_name=$app --action="start" --line_match="JupyterHub is now running at" --log_path="systemd"
2019-01-20 12:36:14 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# RELOAD NGINX
2019-01-20 12:36:14 +01:00
#=================================================
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_script_progression --message="Reloading NGINX web server..."
2019-01-20 12:36:14 +01:00
2023-11-27 17:13:12 +01:00
#REMOVEME? ynh_systemd_action --service_name=nginx --action=reload
2019-01-20 12:36:14 +01:00
#=================================================
2019-08-14 00:07:10 +02:00
# END OF SCRIPT
2019-01-20 12:36:14 +01:00
#=================================================
2019-08-18 00:02:04 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last