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 -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
|
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
2023-04-17 22:03:23 +02: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
|
|
|
#=================================================
|
2023-04-17 22:03:23 +02:00
|
|
|
# APP INITIAL CONFIGURATION
|
2020-05-15 20:07:10 +02:00
|
|
|
#=================================================
|
2023-04-17 22:03:23 +02:00
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2020-05-15 20:07:10 +02:00
|
|
|
|
2023-04-18 09:42:01 +02:00
|
|
|
key=$(ynh_string_random --length=16)
|
|
|
|
|
2023-12-20 18:38:31 +01:00
|
|
|
ynh_add_config --template="config.toml" --destination="$install_dir/config.toml"
|
2023-04-17 22:03:23 +02:00
|
|
|
|
|
|
|
chmod 400 "$install_dir/config.toml"
|
|
|
|
chown $app:$app "$install_dir/config.toml"
|
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
|