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

96 lines
3 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
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
#=================================================
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
#=================================================
2019-08-14 00:07:10 +02:00
# UPGRADE DEPENDENCIES
2019-01-20 12:36:14 +01:00
#=================================================
2023-11-27 17:21:33 +01:00
ynh_script_progression --message="Upgrading dependencies..." --weight=10
2019-08-14 00:07:10 +02:00
2020-04-27 13:22:30 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2023-11-27 17:21:33 +01:00
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:21:33 +01:00
ynh_add_config --template="jupyterhub_config.py" --destination="$install_dir/config/jupyterhub_config.py"
ynh_add_config --template="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
2023-11-27 17:21:33 +01:00
ynh_add_nginx_config
2020-12-20 11:33:16 +01:00
2023-11-27 17:21:33 +01:00
yunohost service add $app --description="Console environment for running Python code" --log="/var/log/$app/$app.log"
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
# 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