Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

so what I'm trying to do is to write a Bash script that will ssh into a server and generate new user credentials. However, it won't create the new user keys, but it can tell you if a user already exists.

echo "You entered $NAME. Is this correct?(y/n) "
read AN

while [ "$AN" != "y" ]
do
    echo "Enter the correct user name: "
    read NAME
    echo "You entered $NAME. Is this correct(y/n)? "
    read AN
done

ssh -t x@0.0.0.0 <<EOF

if [ ! -e /etc/openvpn/easy-rsa/keys/"$NAME.crt" ]
then
    cd /etc/openvpn/easy-rsa/
    source vars
    ./pkitool "$NAME"
else
    echo "File already exists!"
fi

exit
EOF
scp x@0.0.0.0:/etc/openvpn/easy-rsa/keys/$NAME.crt .

This code can generate new user keys, but when I add the if block, it then will no longer create new keys for some reason. Anybody have any ideas why the if block doesn't properly work?

EDIT: I solved it

share|improve this question
4  
Do you mean while loop not if loop? – Tom Cammann Dec 18 '12 at 22:11
@Tom Cammann The while loop works fine for me, maybe he means the if block – BenjiWiebe Dec 18 '12 at 22:22
Can you be more specific than "it doesn't properly work"? What are the symptoms / outputs? – sampson-chen Dec 18 '12 at 22:23
Sorry about that, I'm asking about the why the if loop doesn't work properly. – fixdrift Dec 18 '12 at 22:24
@sampson-chen the output for a new user, call them billy would be scp: /etc/openvpn/easy-rsa/keys/billy.crt: No such file or directory It works just fine for existing users though – fixdrift Dec 18 '12 at 22:25

1 Answer

up vote 0 down vote accepted

I figured it out. I accidentally moved ca.crt into a different folder. This explains why new user keys couldn't be made.

I appreciate the help, sorry for the newbie mistake.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.