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

156 lines
5.3 KiB
Text
Raw Normal View History

2021-09-21 00:25:53 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2021-09-21 00:25:53 +02:00
2023-10-09 12:55:47 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
2021-09-21 00:25:53 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
2023-02-01 19:06:52 +01:00
then
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-09-21 00:25:53 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-10-09 12:14:47 +02:00
ynh_setup_source --dest_dir="$install_dir"
2021-09-21 00:25:53 +02:00
fi
2023-10-09 12:14:47 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-09-21 00:25:53 +02:00
2023-09-29 12:24:16 +02:00
#=======================================================
# MIGRATE MINIO BUCKET IF UPGRADING FROM AN OLD VERSION
#=======================================================
2023-09-29 13:40:20 +02:00
ynh_script_progression --message="Checking if a migration is needed"
2023-09-29 12:24:16 +02:00
if ynh_compare_current_package_version --comparison le --version 0.69.2.2~ynh1
then
ynh_script_progression --message="Migrating MinIO data to local directory"
2023-09-29 17:38:56 +02:00
mkdir -p "/var/lib/$app/data"
2023-09-29 12:24:16 +02:00
chown -R minio:www-data "/var/lib/$app"
2023-09-29 13:50:53 +02:00
ynh_exec_warn_less sudo -u minio $mc_path/mc mirror --preserve "minio/outlinestorage" "/var/lib/$app/data"
2023-09-29 12:24:16 +02:00
chown -R $app:www-data "/var/lib/$app"
ynh_script_progression --message="Data migration finished"
ynh_script_progression --message="Data bucket was kept for safety, just in case !"
ynh_script_progression --message="Don't forget to remove MinIO app if you don't use it !"
2023-12-15 17:02:51 +01:00
db_name=$(ynh_sanitize_dbid --db_name=$app)
ynh_psql_execute_as_root --sql="CREATE EXTENSION IF NOT EXISTS uuid-ossp;" --database=$db_name
2023-09-29 12:24:16 +02:00
else
ynh_script_progression --message="No migration to be done"
fi
2024-02-19 16:47:53 +01:00
#=======================================================
# MIGRATE DEFAULT LANGUAGE ENV PARAMETER
#=======================================================
if ynh_compare_current_package_version --comparison le --version 0.75.0~ynh1
then
ynh_script_progression --message="Migrating default language variable"
if [ "$language" == "fr" ]
then
$language = "fr_FR"
else
$language = "en_US"
fi
else
ynh_script_progression --message="No default language migration to be done"
fi
2021-09-21 00:25:53 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2021-09-21 00:25:53 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2021-09-23 20:12:33 +02:00
# Install Nodejs
2023-10-09 12:55:47 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
2021-09-21 00:25:53 +02:00
2021-11-11 16:38:32 +01:00
#=================================================
# UPGRADE YARN DEPENDENCIES
#=================================================
2024-02-14 10:08:32 +01:00
ynh_script_progression --message="Building $app. This can be very long, be patient !" --weight=10
2021-11-11 16:38:32 +01:00
2023-10-09 12:14:47 +02:00
pushd "$install_dir"
2021-11-11 16:38:32 +01:00
ynh_use_nodejs
2023-02-17 07:07:45 +01:00
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn install --frozen-lockfile --network-timeout 1000000000 2>&1
2023-10-01 10:21:32 +02:00
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH NODE_OPTIONS="--max-old-space-size=3900" yarn build 2>&1
2023-02-28 03:56:48 +01:00
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn cache clean 2>&1
2021-11-11 16:38:32 +01:00
popd
2021-09-21 00:25:53 +02:00
#=================================================
# UPDATE A CONFIG FILE
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2021-11-11 16:38:32 +01:00
2023-10-09 12:14:47 +02:00
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
2021-09-21 00:25:53 +02:00
2023-10-09 12:14:47 +02:00
chmod 400 "$install_dir/.env"
chown $app:$app "$install_dir/.env"
2021-11-11 16:38:32 +01:00
#=================================================
# RUN DB MIGRATION
#=================================================
ynh_script_progression --message="Running DB initial migration..."
2021-09-21 00:25:53 +02:00
2023-10-09 12:14:47 +02:00
pushd "$install_dir"
2021-11-11 16:38:32 +01:00
ynh_use_nodejs
2023-10-09 12:12:27 +02:00
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH NODE_ENV=production yarn db:migrate
2021-11-11 16:38:32 +01:00
popd
2021-09-21 00:25:53 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1
2021-09-21 00:25:53 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2023-10-08 10:18:50 +02:00
cron_path="/etc/cron.d/$app"
ynh_add_config --template="../conf/outline.cron" --destination="$cron_path"
chown root: "$cron_path"
chmod 644 "$cron_path"
2021-11-11 17:30:22 +01:00
yunohost service add $app --description="Outline server" --log="/var/log/$app/$app.log"
2021-09-21 00:25:53 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-09-21 00:25:53 +02:00
2023-10-09 12:55:47 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
2021-09-21 00:25:53 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-04-01 04:57:51 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last