2019-06-30 19:52:29 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2022-03-23 03:07:00 +01:00
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
2019-06-30 19:52:29 +02:00
|
|
|
#=================================================
|
2022-10-05 22:36:43 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2019-06-30 19:52:29 +02:00
|
|
|
|
2022-03-23 03:07:00 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-09-26 09:41:46 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2019-06-30 19:52:29 +02:00
|
|
|
|
2023-09-26 09:41:46 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2019-06-30 19:52:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
2022-03-23 03:07:00 +01:00
|
|
|
# PHP-FPM CONFIGURATION
|
2019-06-30 19:52:29 +02:00
|
|
|
#=================================================
|
2022-10-05 22:36:43 +02:00
|
|
|
ynh_script_progression --message="Configuring PHP-FPM..." --weight=1
|
2022-03-23 03:07:00 +01:00
|
|
|
|
|
|
|
# Create a dedicated PHP-FPM config
|
|
|
|
ynh_add_fpm_config
|
2022-10-05 22:36:43 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
2019-06-30 19:52:29 +02:00
|
|
|
#=================================================
|
2022-03-23 03:07:00 +01:00
|
|
|
# SPECIFIC SETUP
|
2019-06-30 19:52:29 +02:00
|
|
|
#=================================================
|
2022-03-23 03:07:00 +01:00
|
|
|
# INSTALL THE DATABASE
|
|
|
|
#=================================================
|
2022-10-05 22:36:43 +02:00
|
|
|
ynh_script_progression --message="Installing the database..." --weight=1
|
2019-06-30 19:52:29 +02:00
|
|
|
|
2023-09-26 09:41:46 +02:00
|
|
|
pushd $install_dir
|
2022-03-23 03:07:00 +01:00
|
|
|
php$phpversion bin/console glpi:database:install --db-host="localhost" --db-name="$db_name" --db-password="$db_pwd" --db-user="$db_user" --reconfigure --no-interaction
|
2023-09-26 09:41:46 +02:00
|
|
|
php$phpversion bin/console glpi:config:set url_base https://$domain$path
|
2022-03-23 03:07:00 +01:00
|
|
|
popd
|
2019-06-30 19:52:29 +02:00
|
|
|
|
2022-03-23 03:07:00 +01:00
|
|
|
#=================================================
|
|
|
|
# CONFIGURE CRON
|
|
|
|
#=================================================
|
2022-10-05 22:36:43 +02:00
|
|
|
ynh_script_progression --message="Configuring a cron file..." --weight=1
|
2022-03-23 03:07:00 +01:00
|
|
|
|
|
|
|
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
|
2019-06-30 19:52:29 +02:00
|
|
|
|
2022-03-23 03:07:00 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-06-30 19:52:29 +02:00
|
|
|
|
2022-10-05 22:36:43 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|