2021-05-30 12:34:29 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=4
|
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-04-03 14:28:50 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
mkdir -p "$install_dir/.dispatch"
|
2021-06-23 18:45:06 +02:00
|
|
|
|
2023-04-03 14:28:50 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-05-30 12:34:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
|
|
|
|
|
2022-07-16 18:40:29 +02:00
|
|
|
# Create a dedicated NGINX config
|
2021-05-30 12:34:29 +02:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-09-07 20:23:32 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
|
|
|
ynh_use_logrotate
|
|
|
|
|
|
|
|
yunohost service add $app --description="Web-based IRC client" --log="/var/log/$app/$app.log"
|
|
|
|
|
2022-07-16 18:40:29 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..."
|
|
|
|
|
2023-04-03 14:28:50 +02:00
|
|
|
ynh_add_config --template="../conf/config.default.toml" --destination="$install_dir/.dispatch/config.toml"
|
2022-07-16 18:40:29 +02:00
|
|
|
|
2023-04-03 14:28:50 +02:00
|
|
|
chmod 400 "$install_dir/.dispatch/config.toml"
|
|
|
|
chown $app:$app "$install_dir/.dispatch/config.toml"
|
2022-07-16 18:40:29 +02:00
|
|
|
|
2021-05-30 12:34:29 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=2
|
|
|
|
|
|
|
|
# Start a systemd service
|
2022-07-16 18:40:29 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" --line_match="Listening on port"
|
2021-05-30 12:34:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|