Skip to content

Commit a67a25c

Browse files
committed
remove debug output
1 parent e9da06a commit a67a25c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Diff for: docker/entrypoint.sh

-2
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,13 @@ else
1313
# if the users group already exists, create a random GID, otherwise
1414
# reuse it
1515
if ! grep ":$MSF_GID:" /etc/group > /dev/null; then
16-
echo "asdf"
1716
addgroup -g $MSF_GID $MSF_GROUP
1817
else
1918
addgroup $MSF_GROUP
2019
fi
2120

2221
# check if user id already exists
2322
if ! grep ":$MSF_UID:" /etc/passwd > /dev/null; then
24-
echo "cvbb"
2523
adduser -u $MSF_UID -D $MSF_USER -g $MSF_USER -G $MSF_GROUP $MSF_USER
2624
# add user to metasploit group so it can read the source
2725
addgroup $MSF_USER $METASPLOIT_GROUP

0 commit comments

Comments
 (0)