2022-01-02 23:03:52 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2024-01-27 12:41:53 +01:00
|
|
|
#=================================================
|
|
|
|
# INITIALIZE AND STORE SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
2023-12-14 17:02:02 +01:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
|
|
|
|
2022-01-02 23:03:52 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=4
|
|
|
|
|
2023-12-14 16:39:56 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2022-01-02 23:03:52 +01:00
|
|
|
|
2023-12-14 16:39:56 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir/Modules" --source_id="graph"
|
2022-01-02 23:03:52 +01:00
|
|
|
|
2023-12-14 16:39:56 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
2024-01-27 12:41:53 +01:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2022-01-02 23:03:52 +01:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-27 12:41:53 +01:00
|
|
|
# ADD A CONFIGURATION
|
2022-01-02 23:03:52 +01:00
|
|
|
#=================================================
|
2024-01-27 12:41:53 +01:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
2022-01-02 23:03:52 +01:00
|
|
|
|
2024-01-27 12:41:53 +01:00
|
|
|
ynh_add_config --template="example.settings.ini" --destination="$install_dir/settings.ini"
|
2022-01-02 23:03:52 +01:00
|
|
|
|
2024-01-27 12:41:53 +01:00
|
|
|
chmod 400 "$install_dir/settings.ini"
|
|
|
|
chown "$app:$app" "$install_dir/settings.ini"
|
2023-01-19 09:53:25 +01:00
|
|
|
|
2022-01-02 23:03:52 +01:00
|
|
|
#=================================================
|
2024-01-27 12:41:53 +01:00
|
|
|
# SYSTEM CONFIGURATION
|
2022-01-02 23:03:52 +01:00
|
|
|
#=================================================
|
2024-01-27 12:41:53 +01:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2022-01-02 23:03:52 +01:00
|
|
|
|
2024-01-27 12:41:53 +01:00
|
|
|
ynh_add_fpm_config
|
2022-01-02 23:03:52 +01:00
|
|
|
|
2024-01-27 12:41:53 +01:00
|
|
|
ynh_add_nginx_config
|
2022-01-02 23:03:52 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|