Skip to content

Instantly share code, notes, and snippets.

@mrl22
Created March 1, 2022 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrl22/531ccf365dd84353471c6a7a99549144 to your computer and use it in GitHub Desktop.
Save mrl22/531ccf365dd84353471c6a7a99549144 to your computer and use it in GitHub Desktop.
Linux Backup server for Rsync and SSH Keys
#!/bin/bash
# ------------------------------------------------------------------
# Am i Root user?
if [ $(id -u) -eq 0 ]; then
read -p "Enter username : " username
read -s -p "Enter password : " password
egrep "^$username" /etc/passwd >/dev/null
if [ $? -eq 0 ]; then
echo "$username exists!"
exit 1
else
pass=$(perl -e 'print crypt($ARGV[0], "password")' $password)
useradd -s /bin/bash -g backup -m -p "$pass" "$username"
[ $? -eq 0 ] && echo "User has been added to system!" || echo "Failed to add a user!"
chmod 700 /home/$username
fi
else
echo "Only root may add a user to the system."
exit 2
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment