From c8e9e4be24ec40e8307f8e12d1cae307161b8995 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 8 Feb 2024 22:39:40 +0100 Subject: [PATCH] fix --- scripts/change_url | 5 ----- scripts/config | 8 -------- 2 files changed, 13 deletions(-) diff --git a/scripts/change_url b/scripts/change_url index 3233706..566d6ef 100644 --- a/scripts/change_url +++ b/scripts/change_url @@ -1,9 +1,5 @@ #!/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 - #================================================= # GENERIC STARTING #================================================= @@ -27,7 +23,6 @@ ynh_systemd_action --service_name="$app" --action="stop" --log_path="/var/log/$a #================================================= ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1 -# this will most likely adjust NGINX config correctly ynh_change_url_nginx_config #================================================= diff --git a/scripts/config b/scripts/config index 29f78f8..d434cbd 100644 --- a/scripts/config +++ b/scripts/config @@ -1,12 +1,4 @@ #!/bin/bash -# In simple cases, you don't need a config script. - -# With a simple config_panel.toml, you can write in the app settings, in the -# upstream config file or replace complete files (logo ...) and restart services. - -# The config scripts allows you to go further, to handle specific cases -# (validation of several interdependent fields, specific getter/setter for a value, -# display dynamic informations or choices, pre-loading of config type .cube... ). #================================================= # GENERIC STARTING