2019-02-24 18:43:56 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2022-09-05 03:58:00 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-04-07 13:34:10 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2019-02-24 18:43:56 +01:00
|
|
|
|
2023-04-07 13:34:10 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-06-12 20:28:33 +02:00
|
|
|
|
2019-02-24 18:43:56 +01:00
|
|
|
#=================================================
|
2022-09-05 03:58:00 +02:00
|
|
|
# PHP-FPM CONFIGURATION
|
2019-02-24 18:43:56 +01:00
|
|
|
#=================================================
|
2022-09-05 03:58:00 +02:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
|
2019-02-24 18:43:56 +01:00
|
|
|
|
2022-09-05 03:58:00 +02:00
|
|
|
# Create a dedicated PHP-FPM config
|
2023-04-07 13:34:10 +02:00
|
|
|
ynh_add_fpm_config --usage=low --footprint=low
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
2022-09-05 03:58:00 +02:00
|
|
|
# NGINX CONFIGURATION
|
2019-02-24 18:43:56 +01:00
|
|
|
#=================================================
|
2022-09-05 03:58:00 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
2019-02-24 18:43:56 +01:00
|
|
|
|
2022-09-05 03:58:00 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC SETUP
|
|
|
|
#=================================================
|
|
|
|
# SETUP APPLICATION WITH CURL
|
|
|
|
#=================================================
|
2022-09-05 03:58:00 +02:00
|
|
|
ynh_script_progression --message="Setuping application with CURL..." --weight=1
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
# Installation with curl
|
2022-09-05 03:58:00 +02:00
|
|
|
ynh_script_progression --message="Finalizing installation..." --weight=1
|
2020-07-04 13:06:18 +02:00
|
|
|
ynh_local_curl "/install.php" "default_lang=$language" "install=Installer" "name=$admin" "login=$admin" "pwd=$password" "pwd2=$password" "data=1" "email=$admin@$domain" "timezone=Europe/Paris"
|
2019-02-24 18:43:56 +01:00
|
|
|
|
2021-06-12 20:28:33 +02:00
|
|
|
#Removing install.php and /update"
|
2023-04-07 13:34:10 +02:00
|
|
|
ynh_secure_remove --file="${install_dir}/install.php"
|
|
|
|
ynh_secure_remove --file="${install_dir}/update"
|
2019-02-24 18:43:56 +01:00
|
|
|
|
|
|
|
#=================================================
|
2020-06-24 22:26:29 +02:00
|
|
|
# END OF SCRIPT
|
2019-02-24 18:43:56 +01:00
|
|
|
#=================================================
|
|
|
|
|
2022-09-05 03:58:00 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|