1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/meilisearch_ynh.git synced 2024-09-03 19:45:59 +02:00
meilisearch_ynh/scripts/install

74 lines
2.4 KiB
Text
Raw Normal View History

2020-05-15 20:07:10 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2020-05-16 14:28:07 +02:00
# DOWNLOAD AND INSTALL MEILISEARCH
2020-05-15 20:07:10 +02:00
#=================================================
2023-04-17 15:50:57 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2020-05-15 23:27:56 +02:00
2023-04-17 15:50:57 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
2020-05-15 20:07:10 +02:00
2023-04-17 15:35:40 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2023-04-17 15:50:57 +02:00
chmod +x "$install_dir/meilisearch"
2021-06-04 10:11:38 +02:00
2020-05-15 20:07:10 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=8
2020-05-15 20:07:10 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# SETUP SYSTEMD
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Configuring a systemd service..." --weight=2
2020-05-15 20:07:10 +02:00
2020-05-16 14:03:24 +02:00
if [ $allow_analyse ]; then
ynh_replace_string "__ANALYTICS__" "false" "../conf/systemd.service"
else
ynh_replace_string "__ANALYTICS__" "true" "../conf/systemd.service"
fi
2020-05-15 20:07:10 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# SETUP LOGROTATE
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Configuring log rotation..." --weight=1
2020-05-15 20:07:10 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2020-12-14 09:04:42 +01:00
yunohost service add $app --description="Opensource next generation search API" --log="/var/log/$app/$app.log"
2020-05-15 20:07:10 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2020-10-06 10:26:30 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2020-05-15 20:07:10 +02:00
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT
#=================================================
2020-10-05 20:58:38 +02:00
ynh_script_progression --message="Installation of Meilisearch completed" --last