2021-08-13 15:48:24 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_script_progression "Setting up source files..."
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2023-03-29 20:23:48 +03:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2023-03-29 20:23:48 +03:00
|
|
|
chmod -R 770 "$install_dir/storage"
|
2021-08-13 15:48:24 +03:00
|
|
|
|
|
|
|
#=================================================
|
2023-09-10 10:02:49 +03:00
|
|
|
# SYSTEM CONFIGURATION
|
2021-08-13 15:48:24 +03:00
|
|
|
#=================================================
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_script_progression "Adding system configurations related to $app..."
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_config_add_nginx
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_config_add_phpfpm
|
2021-08-13 15:48:24 +03:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_script_progression "Adding $app's configuration..."
|
2021-08-13 15:48:24 +03:00
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_config_add --template="config.php" --destination="$install_dir/config.php"
|
2021-08-13 15:48:24 +03:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-30 23:50:56 +03:00
|
|
|
ynh_script_progression "Installation of $app completed"
|