2017-02-03 19:24:02 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-05-23 16:26:01 +00:00
|
|
|
set -ex
|
2017-02-03 19:24:02 +00:00
|
|
|
|
|
|
|
CAPW=`cat /tmp/ca_password`
|
|
|
|
|
|
|
|
sed -i 's/- jack$/- jack_test/' config.cfg
|
|
|
|
|
|
|
|
ansible-playbook users.yml -e "server_ip=$LXC_IP server_user=root ssh_tunneling_enabled=y IP_subject=$LXC_IP easyrsa_CA_password=$CAPW"
|
|
|
|
|
|
|
|
cd configs/$LXC_IP/pki/
|
|
|
|
|
|
|
|
if openssl crl -inform pem -noout -text -in crl/jack.crt | grep CRL
|
|
|
|
then
|
|
|
|
echo "The CRL check passed"
|
|
|
|
else
|
|
|
|
echo "The CRL check failed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if openssl x509 -inform pem -noout -text -in certs/jack_test.crt | grep CN=jack_test
|
|
|
|
then
|
2017-05-23 16:26:48 +00:00
|
|
|
echo "The new user exists"
|
2017-02-03 19:24:02 +00:00
|
|
|
else
|
|
|
|
echo "The new user does not exist"
|
|
|
|
exit 1
|
|
|
|
fi
|