2019-02-16 15:00:20 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2020-04-14 21:23:42 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=6
|
2019-02-16 15:00:20 +01:00
|
|
|
|
2023-08-16 18:11:35 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2022-07-29 00:43:33 +02:00
|
|
|
|
2023-08-16 18:11:35 +02:00
|
|
|
mkdir -p $install_dir/data
|
2022-07-29 00:43:33 +02:00
|
|
|
|
2023-08-16 18:11:35 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2019-02-16 15:00:20 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-11-22 15:27:37 +01:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
2019-02-16 15:00:20 +01:00
|
|
|
|
2022-07-29 00:43:33 +02:00
|
|
|
# Create a dedicated NGINX config
|
2019-02-16 15:00:20 +01:00
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2023-08-16 18:27:39 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
yunohost service add $app
|
|
|
|
|
2019-02-16 15:00:20 +01:00
|
|
|
#=================================================
|
2022-07-29 00:43:33 +02:00
|
|
|
# SPECIFIC SETUP
|
2019-02-16 15:00:20 +01:00
|
|
|
#=================================================
|
2022-07-29 00:43:33 +02:00
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2019-02-16 15:00:20 +01:00
|
|
|
|
2023-08-16 18:11:35 +02:00
|
|
|
ynh_add_config --template="../conf/config.yml" --destination="$install_dir/config.yml"
|
2022-07-29 00:43:33 +02:00
|
|
|
|
2023-08-16 18:11:35 +02:00
|
|
|
chmod 400 "$install_dir/config.yml"
|
|
|
|
chown $app:$app "$install_dir/config.yml"
|
2019-02-16 15:00:20 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-07-29 00:43:33 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2019-02-16 15:00:20 +01:00
|
|
|
#=================================================
|
2022-10-05 22:54:13 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2019-02-16 15:00:20 +01:00
|
|
|
|
2022-07-29 00:43:33 +02:00
|
|
|
# Start a systemd service
|
|
|
|
ynh_systemd_action --service_name=$app --action="start"
|
2019-02-16 15:00:20 +01:00
|
|
|
|
2022-07-29 00:43:33 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-02-16 15:00:20 +01:00
|
|
|
|
2020-05-31 23:38:48 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|