2020-12-17 15:28:55 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2021-07-10 18:27:01 +02:00
|
|
|
email=$(ynh_user_get_info --username=$admin --key=mail)
|
2020-12-17 15:28:55 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MODIFY URL IN NGINX CONF
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating NGINX web server configuration..." --weight=3
|
|
|
|
|
2023-03-20 22:36:23 +01:00
|
|
|
ynh_change_url_nginx_config
|
2020-12-17 15:28:55 +01:00
|
|
|
|
2024-05-22 13:43:23 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC MODIFICATIONS
|
|
|
|
#=================================================
|
|
|
|
# RECONFIGURING MATOMO
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Reconfiguring Matomo..." --weight=2
|
|
|
|
|
|
|
|
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_string --match_string="$old_domain" --replace_string="$new_domain" --target_file="$install_dir/config/config.ini.php"
|
|
|
|
fi
|
|
|
|
|
2020-12-17 15:28:55 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP A CRON
|
|
|
|
#=================================================
|
2021-07-10 18:27:01 +02:00
|
|
|
ynh_script_progression --message="Setuping a cron..." --weight=1
|
2020-12-17 15:28:55 +01:00
|
|
|
|
2023-12-19 10:45:26 +01:00
|
|
|
path=$new_path
|
|
|
|
domain=$new_domain
|
|
|
|
|
2023-11-02 16:49:27 +01:00
|
|
|
ynh_add_config --template="cron" --destination="/etc/cron.d/$app"
|
2021-07-10 18:27:01 +02:00
|
|
|
chown root: "/etc/cron.d/$app"
|
|
|
|
chmod 644 "/etc/cron.d/$app"
|
2021-04-28 17:36:41 +02:00
|
|
|
|
2020-12-17 15:28:55 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Change of URL completed for $app" --last
|