Escape comma character in gitea password generation 29/14529/1
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Thu, 22 Aug 2024 08:13:00 +0000 (10:13 +0200)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Thu, 22 Aug 2024 08:13:00 +0000 (10:13 +0200)
Change-Id: I772da78412076a6d557faa82ee014abd2a489fc3
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
installers/mgmt-cluster/01-provision-aux-svc.sh
installers/mgmt-cluster/gitea/00-custom-config.rc
installers/mgmt-cluster/gitea/90-provision-gitea-for-osm.sh
installers/mgmt-cluster/gitea/ALL-IN-ONE-Gitea-install.sh
installers/mgmt-cluster/gitea/admin/create-user-repository.sh
installers/mgmt-cluster/gitea/admin/create-user.sh

index 4f00732..ddd3cbf 100755 (executable)
@@ -16,7 +16,7 @@
 # limitations under the License.
 #######################################################################################
 
-set -ex -o pipefail
+set -e -o pipefail
 
 # Warning!!!: Remember to select the desired kubeconfig profile before launching this script
 
index 4666585..89c7e2f 100644 (file)
@@ -18,8 +18,8 @@
 # Transitent file to be sourced to bootstrap some key variables
 
 # Random passwords
-export GITEA_ADMINISTRATOR_PASSWORD=$(apg -a 1 -M sncl -n 1 -m 12 -x 12 -E \\\*\'\"\`\$\<\>\{\})
-export GITEA_STD_USER_PASS=$(apg -a 1 -M sncl -n 1 -m 10 -x 10 -E \\\*\'\"\`\$\<\>\{\})
+export GITEA_ADMINISTRATOR_PASSWORD=$(apg -a 1 -M sncl -n 1 -m 12 -x 12 -E \\\*\'\"\`\$\<\>\{\}\,)
+export GITEA_STD_USER_PASS=$(apg -a 1 -M sncl -n 1 -m 10 -x 10 -E \\\*\'\"\`\$\<\>\{\}\,)
 
 # Uncomment to deploy Gitea only as ClusterIP service (i.e., no LoadBalancer)
 # export GITEA_CHART_VALUES_FILE=values-all.yaml
index 5931e90..f2ada07 100755 (executable)
@@ -16,7 +16,7 @@
 # limitations under the License.
 #######################################################################################
 
-set -ex -o pipefail
+set -e -o pipefail
 
 export HERE=$(dirname "$(readlink --canonicalize "$BASH_SOURCE")")
 source "${HERE}/library/functions.sh"
index 7bcd78c..b6bbffd 100755 (executable)
@@ -16,7 +16,7 @@
 # limitations under the License.
 #######################################################################################
 
-set -ex -o pipefail
+set -e -o pipefail
 
 export HERE=$(dirname "$(readlink --canonicalize "$BASH_SOURCE")")
 source "${HERE}/library/functions.sh"
index edaa358..686c1a9 100755 (executable)
@@ -16,7 +16,7 @@
 # limitations under the License.
 #######################################################################################
 
-set -ex
+set -e
 
 HERE=$(dirname "$(readlink --canonicalize "$BASH_SOURCE")")
 . "$HERE/../library/functions.sh"
index 6208d26..6812427 100755 (executable)
@@ -16,7 +16,7 @@
 # limitations under the License.
 #######################################################################################
 
-set -ex
+set -e
 
 HERE=$(dirname "$(readlink --canonicalize "$BASH_SOURCE")")
 source "${HERE}/../library/functions.sh"