From 529b33067452ee5b20cf18b9deb1868dd72927e4 Mon Sep 17 00:00:00 2001 From: peiying yang Date: Thu, 25 May 2017 19:31:19 -0400 Subject: [PATCH] add user script --- adduser.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 adduser.sh diff --git a/adduser.sh b/adduser.sh new file mode 100644 index 0000000..5a71cfe --- /dev/null +++ b/adduser.sh @@ -0,0 +1,11 @@ +echo "Enter username" +read username +if grep "^"$username":" /etc/ipsec.d/passwd +then + echo "username exist" + exit 1 +fi +echo "Enter password" +read password +password=$(openssl passwd -1 "$password") +echo $username":"$password":xauth-psk" >> /etc/ipsec.d/passwd