2021-03-24 16:15:33 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2022-09-15 21:20:16 +02:00
|
|
|
enable_public_boards="false"
|
2022-09-15 21:13:30 +02:00
|
|
|
|
2021-03-24 16:15:33 +01:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2022-09-15 21:20:16 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=enable_public_boards --value=$enable_public_boards
|
2021-03-24 16:15:33 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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-03-03 09:19:21 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2021-03-24 16:15:33 +01:00
|
|
|
|
2023-03-03 09:19:21 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-06-10 11:44:27 +02:00
|
|
|
|
2021-03-24 16:15:33 +01:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=2
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
2023-03-03 09:29:21 +01:00
|
|
|
ynh_add_nginx_config
|
2021-03-24 16:15:33 +01:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2023-03-14 09:01:57 +01:00
|
|
|
yunohost service add $app --description="Self-hosted kanban board" --log="/var/log/$app/$app.log"
|
|
|
|
|
2021-03-24 16:15:33 +01:00
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
2023-03-14 09:01:57 +01:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2021-03-24 16:15:33 +01:00
|
|
|
|
2023-03-03 09:19:21 +01:00
|
|
|
ynh_add_config --template="../conf/config.json" --destination="$install_dir/config.json"
|
2021-03-24 16:15:33 +01:00
|
|
|
|
2023-03-14 09:01:57 +01:00
|
|
|
chmod 600 $install_dir/config.json
|
|
|
|
chown $app:$app "$install_dir/config.json"
|
2021-03-24 16:15:33 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
|
|
|
# Start a systemd service
|
2021-04-05 23:05:06 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log"
|
2021-03-24 16:15:33 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|