mirror of
https://github.com/YunoHost-Apps/matomo_ynh.git
synced 2024-09-03 19:45:56 +02:00
b29a32e77d
* Upgrade to v5.1.1 (#123) (#124) * Upgrade sources - `main` v5.1.1: https://github.com/matomo-org/matomo/releases/tag/5.1.1 * Auto-update READMEs Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> * [autopatch] Automatic patch attempt for helpers 2.1 * cleaning --------- Co-authored-by: eric_G <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: Yunohost-Bot <>
45 lines
1.4 KiB
Bash
45 lines
1.4 KiB
Bash
#!/bin/bash
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
|
|
|
#=================================================
|
|
# MODIFY URL IN NGINX CONF
|
|
#=================================================
|
|
ynh_script_progression "Updating NGINX web server configuration..."
|
|
|
|
ynh_config_change_url_nginx
|
|
|
|
#=================================================
|
|
# SPECIFIC MODIFICATIONS
|
|
#=================================================
|
|
# RECONFIGURING MATOMO
|
|
#=================================================
|
|
ynh_script_progression "Reconfiguring Matomo..."
|
|
|
|
if [[ -f "$install_dir/config/config.ini.php" ]]; then
|
|
# config.ini.php is only created during the post-install process...
|
|
# it is therefore not present when the CI tests are carried out...
|
|
# This condition is only for CI test to go through the upgrade process
|
|
|
|
# See https://matomo.org/faq/how-to-install/faq_18/
|
|
ynh_replace --match="$old_domain" --replace="$new_domain" --file="$install_dir/config/config.ini.php"
|
|
fi
|
|
|
|
#=================================================
|
|
# SETUP A CRON
|
|
#=================================================
|
|
ynh_script_progression "Setuping a cron..."
|
|
|
|
path=$new_path
|
|
domain=$new_domain
|
|
|
|
ynh_config_add --template="cron" --destination="/etc/cron.d/$app"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression "Change of URL completed for $app"
|