2014-05-10 11:54:15 +02:00
|
|
|
#!/bin/bash
|
2016-07-04 21:16:34 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
2022-03-06 19:01:21 +01:00
|
|
|
# GENERIC START
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-07-04 21:16:34 +02:00
|
|
|
|
2018-05-11 22:59:18 +02:00
|
|
|
source _common.sh
|
2017-05-01 15:47:20 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=2
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2017-08-28 03:03:36 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2024-01-29 19:13:32 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir/source"
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2023-08-18 11:38:35 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-01-29 19:13:32 +01:00
|
|
|
chown -R "$app:" "$install_dir"
|
2022-03-06 19:01:21 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
|
|
|
|
2023-08-18 11:38:35 +02:00
|
|
|
path_no_root=${path%/}
|
2022-03-06 19:01:21 +01:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config "path_no_root"
|
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# INSTALL SEARX IN A VIRTUALENV
|
|
|
|
#=================================================
|
2020-12-19 23:34:40 +01:00
|
|
|
ynh_script_progression --message="Installing Searx..." --weight=2
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2024-01-29 18:26:23 +01:00
|
|
|
_searx_venv_install
|
|
|
|
|
2024-01-29 18:53:28 +01:00
|
|
|
ynh_add_config --template="requirements-ynh.txt" --destination="$install_dir/requirements-ynh.txt"
|
|
|
|
|
2024-01-29 21:27:10 +01:00
|
|
|
ynh_exec_as "$app" "$venvpy" -m pip install --requirement "$install_dir/requirements-ynh.txt" --no-cache-dir
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CONFIGURE SEARX
|
|
|
|
#=================================================
|
2019-05-18 20:15:36 +02:00
|
|
|
ynh_script_progression --message="Configuring Searx..." --weight=2
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2021-05-03 18:31:05 +02:00
|
|
|
secret_key=$(ynh_string_random)
|
2024-01-29 19:13:32 +01:00
|
|
|
ynh_add_config --template="settings.yml" --destination="$install_dir/source/searx/settings.yml"
|
2017-05-01 15:47:20 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SET PERMISSIONS ON SEARX DIRECTORY
|
|
|
|
#=================================================
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2024-01-29 19:13:32 +01:00
|
|
|
chown -R "$app:" "$install_dir"
|
2014-05-10 11:54:15 +02:00
|
|
|
|
2017-05-01 15:47:20 +02:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE UWSGI FOR SEARX
|
|
|
|
#=================================================
|
2020-12-19 23:34:40 +01:00
|
|
|
ynh_script_progression --message="Configuring uWSGI for Searx..." --weight=2
|
2014-05-27 12:13:54 +02:00
|
|
|
|
2021-07-20 21:00:24 +02:00
|
|
|
ynh_add_uwsgi_service
|
2017-05-01 15:47:20 +02:00
|
|
|
|
2018-05-11 22:59:18 +02:00
|
|
|
#=================================================
|
2022-03-06 19:01:21 +01:00
|
|
|
# GENERIC FINALIZATION
|
2018-05-11 22:59:18 +02:00
|
|
|
#=================================================
|
2022-03-06 19:01:21 +01:00
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=4
|
2018-05-11 22:59:18 +02:00
|
|
|
|
2022-03-06 19:01:21 +01:00
|
|
|
# Start a systemd service
|
2024-01-29 19:13:32 +01:00
|
|
|
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"
|
2018-05-11 22:59:18 +02:00
|
|
|
|
2019-03-03 20:33:02 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-03-06 19:01:21 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|