From a67a25c34eb60d19e4e178d1a1150c950360bfd1 Mon Sep 17 00:00:00 2001 From: Christian Mehlmauer Date: Sun, 21 Oct 2018 22:34:19 +0200 Subject: [PATCH] remove debug output --- docker/entrypoint.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index ad41a350df..09feae4583 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -13,7 +13,6 @@ else # if the users group already exists, create a random GID, otherwise # reuse it if ! grep ":$MSF_GID:" /etc/group > /dev/null; then - echo "asdf" addgroup -g $MSF_GID $MSF_GROUP else addgroup $MSF_GROUP @@ -21,7 +20,6 @@ else # check if user id already exists if ! grep ":$MSF_UID:" /etc/passwd > /dev/null; then - echo "cvbb" adduser -u $MSF_UID -D $MSF_USER -g $MSF_USER -G $MSF_GROUP $MSF_USER # add user to metasploit group so it can read the source addgroup $MSF_USER $METASPLOIT_GROUP