2019-08-29 12:48:18 +00:00
|
|
|
#!/bin/bash
|
|
|
|
## Author: Shaun Reed | Contact: shaunrd0@gmail.com | URL: www.shaunreed.com ##
|
|
|
|
## A custom bash script for creating new linux users. ##
|
2020-06-12 04:35:55 +00:00
|
|
|
## Syntax: ./newuser.sh <username> <userID> ##
|
2019-08-29 12:48:18 +00:00
|
|
|
###############################################################################
|
|
|
|
|
2019-08-30 08:10:56 +00:00
|
|
|
if [ "$#" -ne 2 ]; then
|
|
|
|
printf "Illegal number of parameters."
|
2020-06-12 04:35:55 +00:00
|
|
|
printf "\nUsage: sudo ./newuser.sh <username> <groupid>"
|
2019-08-30 08:10:56 +00:00
|
|
|
printf "\n\nAvailable groupd IDs:"
|
|
|
|
printf "\n60001......61183 Unused | 65520...............65533 Unused"
|
|
|
|
printf "\n65536.....524287 Unused | 1879048191.....2147483647 Unused\n"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2019-08-29 12:48:18 +00:00
|
|
|
sudo adduser $1 --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password --uid $2
|
|
|
|
|
2019-08-30 08:10:56 +00:00
|
|
|
printf "\nEnter 1 if $1 should have sudo privileges. Any other value will continue and make no changes\n"
|
|
|
|
read choice
|
|
|
|
if [ $choice -eq 1 ] ; then
|
|
|
|
printf "\nConfiguring sudo for $1...\n"
|
2020-05-27 14:17:40 +00:00
|
|
|
sudo usermod -aG sudo $1
|
2019-08-30 08:10:56 +00:00
|
|
|
fi
|
|
|
|
|
2019-08-29 12:48:18 +00:00
|
|
|
printf "\nEnter 1 to set a password for $1, any other value will exit with no password set\n"
|
|
|
|
read choice
|
|
|
|
|
|
|
|
if [ $choice -eq 1 ] ; then
|
|
|
|
printf "\nChanging password for $1...\n"
|
|
|
|
sudo passwd $1
|
|
|
|
fi
|
|
|
|
|