From 3cc0cb78146d124d1b4870528bc3e2fdfe1cc790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Wed, 28 Feb 2024 12:30:20 +0100 Subject: [PATCH] Add a change_url script --- scripts/change_url | 35 +++++++++++++++++++++++++++++++++++ scripts/install | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 scripts/change_url diff --git a/scripts/change_url b/scripts/change_url new file mode 100644 index 0000000..a9df042 --- /dev/null +++ b/scripts/change_url @@ -0,0 +1,35 @@ +#!/bin/bash + +## this script is only run if actual change to domain/path is detected, if you're here either $domain or $path changed +## new location is available via $domain and $path (or $new_domain and $new_path variables if you want to be explicit) +## old values are available via, you guessed it, $old_domain and $old_path + +#================================================= +# IMPORT GENERIC HELPERS +#================================================= + +source _common.sh +source /usr/share/yunohost/helpers + +#================================================= +# MODIFY URL IN NGINX CONF +#================================================= +ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1 + +ynh_change_url_nginx_config + +#================================================= +# SPECIFIC MODIFICATIONS +#================================================= +ynh_script_progression --message="Updating a configuration file..." --weight=1 + +ynh_add_config --template="htconfig.sample.php" --destination="$install_dir/.htconfig.php" + +chmod 600 "$install_dir/.htconfig.php" +chown "$app:$app" "$install_dir/.htconfig.php" + +#================================================= +# END OF SCRIPT +#================================================= + +ynh_script_progression --message="Change of URL completed for $app" --last diff --git a/scripts/install b/scripts/install index 040813a..26d508a 100755 --- a/scripts/install +++ b/scripts/install @@ -51,7 +51,7 @@ ynh_psql_connect_as --user="$db_name" --password="$db_pwd" --database="$db_name" #================================================= ynh_script_progression --message="Adding a configuration file..." --weight=1 -ynh_add_config --template="../conf/htconfig.sample.php" --destination="$install_dir/.htconfig.php" +ynh_add_config --template="htconfig.sample.php" --destination="$install_dir/.htconfig.php" chmod 600 "$install_dir/.htconfig.php" chown $app:$app "$install_dir/.htconfig.php"