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

98 lines
3.8 KiB
Text
Raw Normal View History

2022-11-23 10:08:54 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
if [ -e "$install_dir/searx" ]; then
2023-09-27 22:08:09 +02:00
tempdir="$(mktemp -d)"
mv "$install_dir/searx/settings.yml" "$tempdir/settings.yml"
sed -i '1s/^/use_default_settings: true\n\n/' "$tempdir/settings.yml"
ynh_secure_remove --file="$install_dir"
2023-09-27 22:08:09 +02:00
mkdir "$install_dir"
mv "$tempdir/settings.yml" "$install_dir/settings.yml"
ynh_secure_remove --file="$tempdir"
ynh_store_file_checksum --file="$install_dir/settings.yml"
ynh_delete_file_checksum --file="/opt/yunohost/$app/searx/settings.yml"
2022-11-23 10:08:54 +01:00
fi
ynh_delete_file_checksum --file="etc/nginx_conf.d/$domain/$app.conf"
2022-11-23 10:08:54 +01:00
#=================================================
# STOP SYSTEMD SERVICE
2022-11-23 10:08:54 +01:00
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
2022-11-23 10:08:54 +01:00
ynh_systemd_action --service_name="uwsgi-app@$app.service" --action="stop" --log_path="/var/log/uwsgi/$app/$app.log"
2022-11-23 10:08:54 +01:00
#=================================================
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
2022-11-23 10:08:54 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --weight=1
2023-03-01 19:36:12 +01:00
ynh_secure_remove --file="$install_dir/searxng-src"
2024-06-11 21:23:30 +02:00
repo_fullpath=$(ynh_read_manifest --manifest_key="upstream.code")
commit_sha=$(ynh_read_manifest --manifest_key="resources.sources.main.url" | xargs basename | tr -d"." -f1)
ynh_exec_fully_quiet git clone -n "$repo_fullpath" "$install_dir/searxng-src"
pushd "$install_dir/searxng-src"
ynh_exec_fully_quiet git checkout "$commit_sha"
popd
ynh_secure_remove --file="$install_dir/searxng-pyenv"
python3 -m venv --system-site-packages "$install_dir/searxng-pyenv"
2023-09-18 19:51:03 +02:00
set +o nounset; source "$install_dir/searxng-pyenv/bin/activate"; set -o nounset
pip3 install -U pip setuptools wheel pyyaml --no-cache-dir
ynh_exec_fully_quiet pip3 install -e "$install_dir/searxng-src"
2022-11-23 10:08:54 +01:00
fi
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app: "$install_dir"
2022-11-23 10:08:54 +01:00
#=================================================
# REAPPLY SYSTEM CONFIGURATIONS
2022-11-23 10:08:54 +01:00
#=================================================
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2022-11-23 10:08:54 +01:00
ynh_add_nginx_config
2022-11-23 10:08:54 +01:00
#=================================================
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
2022-11-23 10:08:54 +01:00
#=================================================
# UPDATE A CONFIG FILE
2022-11-23 10:08:54 +01:00
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
2022-11-23 10:08:54 +01:00
2023-03-01 19:36:12 +01:00
ynh_add_uwsgi_service
2022-11-23 10:08:54 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
ynh_systemd_action --service_name="uwsgi-app@$app.service" --action="start" --line_match="spawned uWSGI master process" --log_path="/var/log/uwsgi/$app/$app.log"
2022-11-23 10:08:54 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last