1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/matomo_ynh.git synced 2024-09-03 19:45:56 +02:00
matomo_ynh/scripts/change_url

46 lines
1.4 KiB
Text
Raw Normal View History

#!/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
Testing (#120) * Upgrade to v5.0.3 (#116) Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> * Auto-update READMEs * Change url: Update trusted hosts (#119) * Testing 5.0.3~ynh1 (#117) * Upgrade to v5.0.3 (#116) Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> * Auto-update READMEs --------- Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: eric_G <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update change_url Update trusted_hosts in config.ini.php * Update scripts/change_url Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com> * Update change_url Create config.ini.php if it doesn't exist * Update change_url Only alter config file if it exists * Update nginx.conf --------- Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: eric_G <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com> * Auto-update READMEs * Update manifest.toml * Auto-update READMEs --------- Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com>
2024-05-22 13:43:23 +02:00
#=================================================
# SPECIFIC MODIFICATIONS
#=================================================
# RECONFIGURING MATOMO
#=================================================
ynh_script_progression "Reconfiguring Matomo..."
Testing (#120) * Upgrade to v5.0.3 (#116) Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> * Auto-update READMEs * Change url: Update trusted hosts (#119) * Testing 5.0.3~ynh1 (#117) * Upgrade to v5.0.3 (#116) Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> * Auto-update READMEs --------- Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: eric_G <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update change_url Update trusted_hosts in config.ini.php * Update scripts/change_url Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com> * Update change_url Create config.ini.php if it doesn't exist * Update change_url Only alter config file if it exists * Update nginx.conf --------- Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: eric_G <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com> * Auto-update READMEs * Update manifest.toml * Auto-update READMEs --------- Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com>
2024-05-22 13:43:23 +02:00
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"
Testing (#120) * Upgrade to v5.0.3 (#116) Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> * Auto-update READMEs * Change url: Update trusted hosts (#119) * Testing 5.0.3~ynh1 (#117) * Upgrade to v5.0.3 (#116) Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> * Auto-update READMEs --------- Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: eric_G <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Update change_url Update trusted_hosts in config.ini.php * Update scripts/change_url Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com> * Update change_url Create config.ini.php if it doesn't exist * Update change_url Only alter config file if it exists * Update nginx.conf --------- Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: eric_G <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com> * Auto-update READMEs * Update manifest.toml * Auto-update READMEs --------- Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: CodeShakingSheep <19874562+CodeShakingSheep@users.noreply.github.com> Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com>
2024-05-22 13:43:23 +02:00
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"
2021-04-28 17:36:41 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Change of URL completed for $app"