remove debug output
parent
e9da06a645
commit
a67a25c34e
|
@ -13,7 +13,6 @@ else
|
||||||
# if the users group already exists, create a random GID, otherwise
|
# if the users group already exists, create a random GID, otherwise
|
||||||
# reuse it
|
# reuse it
|
||||||
if ! grep ":$MSF_GID:" /etc/group > /dev/null; then
|
if ! grep ":$MSF_GID:" /etc/group > /dev/null; then
|
||||||
echo "asdf"
|
|
||||||
addgroup -g $MSF_GID $MSF_GROUP
|
addgroup -g $MSF_GID $MSF_GROUP
|
||||||
else
|
else
|
||||||
addgroup $MSF_GROUP
|
addgroup $MSF_GROUP
|
||||||
|
@ -21,7 +20,6 @@ else
|
||||||
|
|
||||||
# check if user id already exists
|
# check if user id already exists
|
||||||
if ! grep ":$MSF_UID:" /etc/passwd > /dev/null; then
|
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
|
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
|
# add user to metasploit group so it can read the source
|
||||||
addgroup $MSF_USER $METASPLOIT_GROUP
|
addgroup $MSF_USER $METASPLOIT_GROUP
|
||||||
|
|
Loading…
Reference in New Issue