1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/leed_ynh.git synced 2024-09-03 19:26:32 +02:00
leed_ynh/scripts/install

63 lines
2.1 KiB
Text
Raw Permalink Normal View History

2014-06-17 23:42:54 +02:00
#!/bin/bash
2017-03-01 19:37:00 +01:00
#=================================================
2021-05-16 16:15:54 +02:00
# GENERIC START
2017-03-01 19:37:00 +01:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2016-06-15 23:56:35 +02:00
2017-03-19 23:03:07 +01:00
source _common.sh
2017-03-01 19:37:00 +01:00
source /usr/share/yunohost/helpers
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Setting up source files..." --weight=3
2015-11-22 14:37:01 +01:00
2019-05-20 23:09:08 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2024-01-16 21:35:46 +01:00
ynh_setup_source --dest_dir="$install_dir"
2015-11-22 14:37:01 +01:00
chmod 750 "$install_dir"
2024-01-16 21:35:46 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2021-05-16 16:15:54 +02:00
2017-03-01 19:37:00 +01:00
#=================================================
2024-01-16 21:35:46 +01:00
# SYSTEM CONFIGURATION
2017-03-01 19:37:00 +01:00
#=================================================
2024-01-16 21:35:46 +01:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2017-03-01 19:37:00 +01:00
2020-11-25 20:55:09 +01:00
# Create a dedicated PHP-FPM config
2019-06-02 13:47:14 +02:00
ynh_add_fpm_config --usage=low --footprint=low
2022-10-20 00:14:07 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2021-05-16 16:15:54 +02:00
# Create a dedicated Fail2Ban config
2019-01-19 12:00:42 +01:00
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="PHP message: Leed: wrong login for .* client: <HOST>" --max_retry=5
2017-12-11 20:37:45 +01:00
2017-03-01 19:37:00 +01:00
#=================================================
2024-01-16 21:35:46 +01:00
# SETUP APPLICATION WITH CURL
2017-12-16 23:21:37 +01:00
#=================================================
2024-01-16 21:35:46 +01:00
ynh_script_progression --message="Finalizing installation..."
2017-12-16 23:21:37 +01:00
2024-01-16 21:35:46 +01:00
ynh_local_curl "/install.php?installButton" \
"install_changeLngLeed=$language" \
"root=$domain$path" \
"mysqlHost=localhost" \
"mysqlLogin=$db_user" \
"mysqlMdp=$db_pwd" \
"mysqlBase=$db_name" \
"mysqlPrefix=leed_" \
"login=$admin" \
"password=$password"
# Create cron file
2024-01-16 22:14:40 +01:00
code_sync=$(ynh_mysql_execute_as_root --database="$app" --sql='SELECT value FROM leed_configuration WHERE `key`="synchronisationCode"' | sed -n 1p)
2024-01-16 21:35:46 +01:00
ynh_add_config --template="cron_leed" --destination="/etc/cron.d/$app"
2019-01-30 16:15:24 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-03-12 20:09:45 +01:00
ynh_script_progression --message="Installation of $app completed" --last