2021-11-01 18:18:52 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2021-11-01 21:28:28 +01:00
|
|
|
# INSTALL NODEJS
|
2021-11-01 18:18:52 +01:00
|
|
|
#=================================================
|
2021-11-02 10:38:23 +01:00
|
|
|
ynh_script_progression --message="Installing nodejs..." --weight=2
|
2021-11-01 18:18:52 +01:00
|
|
|
|
2021-11-01 21:45:35 +01:00
|
|
|
ynh_install_nodejs --nodejs_version=$nodejs_version
|
2021-11-01 18:18:52 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2021-11-02 06:31:18 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2021-11-01 18:18:52 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-03-21 09:28:18 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2023-03-21 10:22:33 +01:00
|
|
|
|
2021-11-02 06:19:03 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from dist.src
|
2023-03-21 09:41:07 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir/dist" --source_id="dist"
|
2021-11-01 18:18:52 +01:00
|
|
|
|
2023-03-21 09:28:18 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-11-01 18:18:52 +01:00
|
|
|
|
|
|
|
#=================================================
|
2023-03-21 10:25:34 +01:00
|
|
|
# SYSTEM CONFIGURATION
|
2021-11-01 18:18:52 +01:00
|
|
|
#=================================================
|
2023-03-21 10:25:34 +01:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2021-11-01 18:18:52 +01:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-03-21 09:41:07 +01:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
2023-03-21 10:22:33 +01:00
|
|
|
yunohost service add $app --description="Monitoring tool" --log="/var/log/$app/$app.log"
|
2023-03-21 09:41:07 +01:00
|
|
|
|
2021-11-01 18:18:52 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
2023-09-21 08:24:27 +02:00
|
|
|
ynh_script_progression --message="Installing $app dependencies..." --weight=7
|
2021-11-01 18:18:52 +01:00
|
|
|
|
2023-03-21 09:28:18 +01:00
|
|
|
pushd "$install_dir"
|
2023-03-21 10:25:48 +01:00
|
|
|
ynh_use_nodejs
|
2023-09-20 21:06:50 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install --production
|
2023-09-21 08:54:12 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm run download-dist
|
2021-11-09 08:01:22 +01:00
|
|
|
popd
|
2021-11-01 18:18:52 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2021-11-02 06:31:18 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
|
2021-11-01 18:18:52 +01:00
|
|
|
|
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-11-02 06:31:18 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|