From b2146f56463cdb4f24632c18d50f12a1b78eb5f9 Mon Sep 17 00:00:00 2001 From: "Peiying Yang(Brian)" Date: Sat, 27 May 2017 23:07:00 -0400 Subject: [PATCH] Update adduser.sh --- adduser.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/adduser.sh b/adduser.sh index 6a6fcbe..525a268 100644 --- a/adduser.sh +++ b/adduser.sh @@ -11,3 +11,9 @@ echo "Enter password" read password password=$(openssl passwd -1 "$password") echo $username":"$password":xauth-psk" >> /etc/ipsec.d/passwd +if grep "^"$username":" /etc/ipsec.d/passwd +then + echo "Success to add" +else + echo "Fail to add" +fi