summaryrefslogtreecommitdiffstats
path: root/catalog-fe/src/main/resources/scripts/updateSslParams.sh
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2023-05-10 14:16:02 +0100
committerMichael Morris <michael.morris@est.tech>2023-05-16 15:09:28 +0000
commite93787b414c6af91cf4c509edef2aec3d2187de2 (patch)
tree7e63873f19b307f12f2124e37c844b48379296d7 /catalog-fe/src/main/resources/scripts/updateSslParams.sh
parent8183ade590e367f28e13484201d2c9526be221dc (diff)
Remove unused jetty scripts
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Change-Id: Ic5cf47f6df292cad5b35c854c5c8f210cc1f575d Issue-ID: SDC-4483
Diffstat (limited to 'catalog-fe/src/main/resources/scripts/updateSslParams.sh')
-rw-r--r--catalog-fe/src/main/resources/scripts/updateSslParams.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/catalog-fe/src/main/resources/scripts/updateSslParams.sh b/catalog-fe/src/main/resources/scripts/updateSslParams.sh
deleted file mode 100644
index d9e955e0f5..0000000000
--- a/catalog-fe/src/main/resources/scripts/updateSslParams.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-
-function usage() {
- echo "$0 <working dir>"
-}
-
-function exitOnError() {
- if [ $1 -ne 0 ]
- then
- echo "Failed running task $2"
- exit 2
- fi
-}
-
-if [ $# -ne 1 ]
-then
- usage
- if [ ${#OLDPWD} -ne 0 ]
- then
- cd -
- fi
- exit 1
-
-fi
-
-WORK_DIR=$1
-
-cd $WORK_DIR
-
-sed -i 's/\(^https.port=\)\(.*\)/\1443/g' start.d/https.ini
-exitOnError $? "update_port_in_https_ini"
-
-cd -