2022-04-14 15:50:10 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
key=$(ynh_string_random --length=64)
|
|
|
|
|
2023-05-02 14:06:23 +02:00
|
|
|
#=================================================
|
|
|
|
# INSTALL DEPENDENCIES
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installing dependencies..." --weight=1
|
|
|
|
|
|
|
|
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
|
2022-04-14 15:50:10 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=5
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-05-02 13:43:35 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2022-04-14 15:50:10 +02:00
|
|
|
|
2023-05-02 13:43:35 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2022-04-14 15:50:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
|
|
|
|
2023-05-02 13:43:35 +02:00
|
|
|
ynh_add_config --template="../conf/default.conf" --destination="$install_dir/default.json"
|
2022-04-14 15:50:10 +02:00
|
|
|
|
2023-05-02 13:43:35 +02:00
|
|
|
chmod 650 "$install_dir/default.json"
|
|
|
|
chown $app:$app "$install_dir/default.json"
|
2022-04-14 15:50:10 +02:00
|
|
|
|
2023-05-02 14:07:10 +02:00
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring the app..." --weight=10
|
|
|
|
|
|
|
|
pushd $install_dir
|
|
|
|
ynh_use_nodejs
|
2023-05-02 14:12:46 +02:00
|
|
|
ynh_exec_warn_less $ynh_npm install --only=prod
|
2023-05-02 14:07:10 +02:00
|
|
|
popd
|
|
|
|
|
2022-04-14 15:50:10 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=1
|
|
|
|
|
2023-01-10 23:27:04 +01:00
|
|
|
env_path=$PATH
|
2022-04-14 15:50:10 +02:00
|
|
|
# Create a dedicated systemd config
|
2023-01-10 23:27:04 +01:00
|
|
|
ynh_add_systemd_config
|
2022-04-14 15:50:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2023-01-10 23:27:04 +01:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=3
|
2022-04-14 15:50:10 +02:00
|
|
|
|
2023-01-10 23:27:04 +01:00
|
|
|
yunohost service add $app --description="Music streaming server" --log="/var/log/$app/$app.log"
|
2022-04-14 15:50:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2023-01-10 23:27:04 +01:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2022-04-14 15:50:10 +02:00
|
|
|
|
|
|
|
# Start a systemd service
|
2023-01-10 23:27:04 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
2022-04-14 15:50:10 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|