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/_common.sh

129 lines
4.4 KiB
Bash
Raw Normal View History

2022-11-23 10:08:54 +01:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
2023-02-08 00:06:00 +01:00
repo_fullpath="https://github.com/searxng/searxng"
2023-12-11 07:15:11 +01:00
commit_sha="8effefa8db401661d205d51d17ef25b3f8cf5eda"
2022-11-23 10:08:54 +01:00
#=================================================
2022-11-23 23:16:21 +01:00
# UWSGI HELPERS
2022-11-23 10:08:54 +01:00
#=================================================
2022-11-23 23:16:21 +01:00
# Check if system wide templates are available and correcly configured
#
# usage: ynh_check_global_uwsgi_config
ynh_check_global_uwsgi_config () {
uwsgi --version || ynh_die --message="You need to add uwsgi (and appropriate plugin) as a dependency"
2022-11-23 23:16:21 +01:00
cat > "/etc/systemd/system/uwsgi-app@.service" <<EOF
2022-11-23 23:16:21 +01:00
[Unit]
Description=%i uWSGI app
After=syslog.target
2023-02-08 00:06:00 +01:00
2022-11-23 23:16:21 +01:00
[Service]
RuntimeDirectory=%i
ExecStart=/usr/bin/uwsgi \
--ini /etc/uwsgi/apps-available/%i.ini \
--socket /run/%i/app.socket \
2022-11-23 23:16:21 +01:00
--logto /var/log/uwsgi/%i/%i.log
User=%i
Group=www-data
Restart=always
RestartSec=10
2022-11-23 23:16:21 +01:00
KillSignal=SIGQUIT
Type=notify
NotifyAccess=all
2023-02-08 00:06:00 +01:00
2022-11-23 23:16:21 +01:00
[Install]
WantedBy=multi-user.target
EOF
systemctl daemon-reload
2022-11-23 23:16:21 +01:00
}
# Create a dedicated uwsgi ini file to use with generic uwsgi service
#
# To be able to customise the settings of the systemd unit you can override the rules with the file "conf/uwsgi-app@override.service".
# This file will be automatically placed on the good place
#
# Note that the service need to be started manually at the end of the installation.
# Generally you can start the service with this command:
# ynh_systemd_action --service_name "uwsgi-app@$app.service" --line_match "WSGI app 0 \(mountpoint='[/[:alnum:]_-]*'\) ready in [[:digit:]]* seconds on interpreter" --log_path "/var/log/uwsgi/$app/$app.log"
2022-11-23 23:16:21 +01:00
#
# usage: ynh_add_uwsgi_service
#
# to interact with your service: `systemctl <action> uwsgi-app@app`
ynh_add_uwsgi_service () {
ynh_check_global_uwsgi_config
local finaluwsgiini="/etc/uwsgi/apps-available/$app.ini"
# www-data group is needed since it is this nginx who will start the service
usermod --append --groups www-data "$app" || ynh_die --message="It wasn't possible to add user $app to group www-data"
ynh_add_config --template="uwsgi.ini" --destination="$finaluwsgiini"
ynh_store_file_checksum --file="$finaluwsgiini"
chown $app:root "$finaluwsgiini"
# make sure the folder for logs exists and set authorizations
mkdir -p "/var/log/uwsgi/$app"
chown $app:root "/var/log/uwsgi/$app"
chmod -R u=rwX,g=rX,o= "/var/log/uwsgi/$app"
# Setup specific Systemd rules if necessary
mkdir -p "/etc/systemd/system/uwsgi-app@$app.service.d"
if [ -e "../conf/uwsgi-app@override.service" ]; then
ynh_add_config --template="uwsgi-app@override.service" --destination="/etc/systemd/system/uwsgi-app@$app.service.d/override.conf"
fi
systemctl daemon-reload
ynh_systemd_action --service_name="uwsgi-app@$app.service" --action="enable"
# Add as a service
yunohost service add "uwsgi-app@$app" --description="uWSGI service for searxng" --log "/var/log/uwsgi/$app/$app.log"
2022-11-23 23:16:21 +01:00
}
# Remove the dedicated uwsgi ini file
#
# usage: ynh_remove_uwsgi_service
ynh_remove_uwsgi_service () {
local finaluwsgiini="/etc/uwsgi/apps-available/$app.ini"
if [ -e "$finaluwsgiini" ]; then
yunohost service remove "uwsgi-app@$app"
ynh_systemd_action --service_name="uwsgi-app@$app.service" --action="stop"
ynh_exec_fully_quiet ynh_systemd_action --service_name="uwsgi-app@$app.service" --action="disable"
ynh_secure_remove --file="$finaluwsgiini"
ynh_secure_remove --file="/var/log/uwsgi/$app"
ynh_secure_remove --file="/etc/systemd/system/uwsgi-app@$app.service.d"
fi
2022-11-23 23:16:21 +01:00
}
# Backup the dedicated uwsgi config
# Should be used in backup script
2022-11-23 23:16:21 +01:00
#
# usage: ynh_backup_uwsgi_service
ynh_backup_uwsgi_service () {
ynh_backup --src_path="/etc/uwsgi/apps-available/$app.ini"
2023-10-19 22:42:21 +02:00
ynh_backup --src_path="/etc/systemd/system/uwsgi-app@$app.service.d" --not_mandatory
}
# Restore the dedicated uwsgi config
# Should be used in restore script
2022-11-23 23:16:21 +01:00
#
# usage: ynh_restore_uwsgi_service
ynh_restore_uwsgi_service () {
ynh_check_global_uwsgi_config
ynh_restore_file --origin_path="/etc/uwsgi/apps-available/$app.ini"
2023-10-19 22:54:27 +02:00
ynh_restore_file --origin_path="/etc/systemd/system/uwsgi-app@$app.service.d" --not_mandatory
mkdir -p "/var/log/uwsgi/$app"
chown $app:root "/var/log/uwsgi/$app"
chmod -R u=rwX,g=rX,o= "/var/log/uwsgi/$app"
ynh_systemd_action --service_name="uwsgi-app@$app.service" --action="enable"
yunohost service add "uwsgi-app@$app" --description="uWSGI service for searxng" --log "/var/log/uwsgi/$app/$app.log"
2022-11-23 23:16:21 +01:00
}