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/install

58 lines
2 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
#=================================================
# APP "BUILD" (DEPLOYING SOURCES, VENV, COMPILING ETC)
2022-11-23 10:08:54 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
2022-11-23 10:08:54 +01:00
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=1
2024-07-22 16:17:56 +02:00
myynh_source_searxng
2022-11-23 10:08:54 +01:00
ynh_script_progression --message="Installing SearXNG..." --weight=2
2024-07-22 16:17:56 +02:00
myynh_install_searxng
2022-11-23 10:08:54 +01:00
#=================================================
# SYSTEM CONFIGURATION
2022-11-23 10:08:54 +01:00
#=================================================
ynh_script_progression --message="Adding 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
2023-09-27 22:08:09 +02:00
ynh_add_uwsgi_service
2022-11-23 10:08:54 +01:00
#=================================================
# APP INITIAL CONFIGURATION
2022-11-23 10:08:54 +01:00
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Adding a configuration file..." --weight=1
2022-11-23 12:46:39 +01:00
secret_key=$(ynh_string_random)
2023-09-27 22:08:09 +02:00
ynh_add_config --template="../conf/settings.yml" --destination="$install_dir/settings.yml"
2023-02-08 00:06:00 +01:00
2024-07-22 16:17:56 +02:00
myynh_set_permissions
2022-11-23 10:08:54 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# 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="WSGI app 0 \(mountpoint='[/[:alnum:]_-]*'\) ready in [[:digit:]]* seconds on interpreter" --log_path="/var/log/uwsgi/$app/$app.log"
2022-11-23 10:08:54 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last