1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dolibarr_ynh.git synced 2024-09-03 18:35:53 +02:00
dolibarr_ynh/scripts/install

94 lines
3.2 KiB
Text
Raw Normal View History

#!/bin/bash
2015-09-28 22:13:34 +02:00
2018-01-16 17:09:27 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2018-01-16 17:09:27 +01:00
2023-05-22 08:30:20 +02:00
member=0
2023-05-22 08:35:38 +02:00
fpm_footprint="medium"
fpm_usage="medium"
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2023-05-22 08:30:20 +02:00
ynh_script_progression --message="Storing installation settings..." --weight=2
2023-05-22 08:30:20 +02:00
ynh_app_setting_set --app=$app --key=member --value=$member
ynh_app_setting_set --app=$app --key=version --value=$(ynh_app_upstream_version "../manifest.json")
2023-05-22 08:35:38 +02:00
ynh_app_setting_set --app=$app --key=fpm_footprint --value=$fpm_footprint
ynh_app_setting_set --app=$app --key=fpm_usage --value=$fpm_usage
#=================================================
# CREATE A MYSQL DATABASE
#=================================================
2023-05-22 08:30:20 +02:00
ynh_script_progression --message="Creating a MySQL database..." --weight=1
ynh_mysql_execute_as_root --sql="ALTER DATABASE $db_name charset=utf8"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2022-11-07 16:35:41 +01:00
# Load the last available version
source upgrade.d/upgrade.last.sh
2023-10-02 15:33:19 +02:00
# Create an app.src for the last version of Dolibarr
2022-11-07 16:35:41 +01:00
cat > ../conf/app.src << EOF
SOURCE_URL=https://github.com/Dolibarr/dolibarr/archive/$next_version.tar.gz
SOURCE_SUM=$dolibarr_source_sha256
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.bz2
SOURCE_IN_SUBDIR=true
EOF
# Download, check integrity, uncompress and patch the source from app.src
2023-10-02 16:37:30 +02:00
ynh_script_progression --message="Download source files..." --weight=10
2023-05-22 08:21:08 +02:00
ynh_setup_source --dest_dir="$install_dir"
2017-05-18 20:42:22 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring PHP-FPM" --weight=2
# Create a dedicated php-fpm config
2023-05-22 08:35:38 +02:00
ynh_add_fpm_config --usage=$fpm_usage --footprint=$fpm_footprint
2021-03-24 15:39:00 +01:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
# PREPARE AND INSTALL APP
#=================================================
2021-09-25 15:05:51 +02:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2023-10-02 16:41:56 +02:00
ynh_add_config --template="../conf/conf.php" --destination="$install_dir/htdocs/conf/conf.php"
2022-11-30 08:31:35 +01:00
2023-10-02 16:19:14 +02:00
chmod 644 "$install_dir/htdocs/conf/conf.php"
2023-10-02 16:37:30 +02:00
chown $app:$app "$install_dir/htdocs/conf/conf.php"
2021-09-25 13:16:23 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Configuring log rotation..." --weight=1
# Use logrotate to manage application logfile(s)
2023-05-22 08:21:08 +02:00
ynh_use_logrotate --logfile="$install_dir/documents/dolibarr.log"
#=================================================
# END OF SCRIPT
#=================================================
2019-07-05 22:34:21 +02:00
ynh_script_progression --message="Installation of $app completed" --last