Skip to content

Commit

Permalink
Updated shell in add_users
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornplusplus committed Sep 10, 2022
1 parent 774ba19 commit a917a8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/add_users.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
source vars.sh

echo "Creating admin account, $ADMIN_USER..."
useradd --create-home --password $(echo $ADMIN_PASSWORD) $ADMIN_USER
useradd --create-home --password $(echo $ADMIN_PASSWORD) --shell /bin/bash $ADMIN_USER
usermod -aG sudo $ADMIN_USER

echo "Creating team account, $TEAM_USER..."
useradd --create-home --password $(echo $TEAM_PASSWORD) $TEAM_USER
useradd --create-home --password $(echo $TEAM_PASSWORD) --shell /bin/bash $TEAM_USER

0 comments on commit a917a8c

Please sign in to comment.