2022-11-02 10:16:52 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2023-12-15 08:20:39 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2022-11-02 10:16:52 +01:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2023-12-15 08:20:39 +01:00
|
|
|
#=================================================
|
|
|
|
# APP "BUILD" (DEPLOYING SOURCES, VENV, COMPILING ETC)
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2022-11-18 09:48:08 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=6
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-12-15 08:20:39 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
|
|
|
|
mkdir -p "$install_dir/data"
|
|
|
|
|
|
|
|
chmod -R 750 "$install_dir/data"
|
|
|
|
chown -R $app:$app "$install_dir"
|
|
|
|
|
|
|
|
ynh_secure_remove "$install_dir/client"
|
|
|
|
ynh_secure_remove "$install_dir/server"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# APP INITIAL CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Adding configuration file..." --weight=1
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-12-15 08:20:39 +01:00
|
|
|
ynh_add_config --template="server.yml" --destination="$install_dir/server.yml"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SYSTEM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2022-11-02 10:16:52 +01:00
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2023-12-15 08:20:39 +01:00
|
|
|
yunohost service add $app --description="Open Source Push Notification Server" --log="/var/log/$app/$app.log"
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-12-15 08:20:39 +01:00
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_add_config -t "ntfy.sh" -d "$install_dir/ntfy.sh"
|
|
|
|
chown $app:$app "$install_dir/ntfy.sh"
|
|
|
|
chmod u+x "$install_dir/ntfy.sh"
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-12-15 08:20:39 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2022-11-02 10:16:52 +01:00
|
|
|
|
2023-12-15 08:20:39 +01:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ADD ADMIN
|
|
|
|
#=================================================
|
2022-11-18 09:48:08 +01:00
|
|
|
ynh_script_progression --message="Adding admin user..." --weight=1
|
2023-12-15 08:20:39 +01:00
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_exec_as $app NTFY_PASSWORD="$password" $install_dir/ntfy.sh user add --role=admin $admin
|
2022-11-18 09:48:08 +01:00
|
|
|
|
2023-12-15 08:20:39 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2023-02-24 14:01:24 +01:00
|
|
|
ynh_script_progression --message="Installation completed" --last
|