From e7d7950a35fcd944b5a46422f00ecea61ad8dbd1 Mon Sep 17 00:00:00 2001 From: "Peiying Yang(Brian)" Date: Sat, 27 May 2017 23:24:42 -0400 Subject: [PATCH] Update adduser.sh --- adduser.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/adduser.sh b/adduser.sh index 525a268..66598de 100644 --- a/adduser.sh +++ b/adduser.sh @@ -1,17 +1,17 @@ #!/bin/bash echo "Enter username" -read username -if grep "^"$username":" /etc/ipsec.d/passwd +read -r username +if grep "^$username:" /etc/ipsec.d/passwd then - echo "username exist" + echo "Username already exist" exit 1 fi echo "Enter password" -read password +read -r password password=$(openssl passwd -1 "$password") echo $username":"$password":xauth-psk" >> /etc/ipsec.d/passwd -if grep "^"$username":" /etc/ipsec.d/passwd +if grep "^$username:" /etc/ipsec.d/passwd then echo "Success to add" else