From 64636c2148414c1fa5da4b46a69570cdab003837 Mon Sep 17 00:00:00 2001 From: "k.kedron" Date: Wed, 28 Aug 2019 14:31:52 +0200 Subject: Fully HTTPS support in the dcaedt-be Fully HTTPS support: -Updated the onap/base_sdc-jetty docker image version -Updated the chef script to properly used of the new docker image -Updated jvm configuration to support call to the SDC components using HTTPS. -Add support for change the http to https in the python script -Added buildRestClient method to create the CloseableHttpClient supporting the SSL connection -Checkstyle in the recipes -Update the docker_run.sh: - Change JAVA_OPTIONS - Used the secure connection to do health check Issue-ID: SDC-2477 Signed-off-by: Krystian Kedron Change-Id: I7bf3d307e5765fa75a37ba0a4b41fd7fa87d28ab --- docker/docker_be/set_user.sh | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100755 docker/docker_be/set_user.sh (limited to 'docker/docker_be/set_user.sh') diff --git a/docker/docker_be/set_user.sh b/docker/docker_be/set_user.sh deleted file mode 100755 index 6233c07..0000000 --- a/docker/docker_be/set_user.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# Create user - -USER="jetty" -GROUP="jetty" -UID="352070" -GID="35953" - -# Remove user: -deluser ${USER} - -delgroup ${GROUP} - -echo "${USER}:x:${UID}:${GID}::/home/${USER}:Linux User,,,:/home/jetty:/bin/false" >> /etc/passwd - -echo "${GROUP}:x:${GID}:${USER}" >> /etc/group - -echo "${USER}:!:17501:0:99999:7:::" >> /etc/shadow - -mkdir /home/${USER} && chown ${USER}:${GROUP} /home/${USER} \ No newline at end of file -- cgit 1.2.3-korg