You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
algo/tests/update-users.sh

32 lines
1.1 KiB
Bash

#!/usr/bin/env bash
set -ex
CAPW=`cat /tmp/ca_password`
6 years ago
USER_ARGS="server_ip=$LXC_IP server_user=ubuntu ssh_tunneling_enabled=y IP_subject=$LXC_IP easyrsa_CA_password=$CAPW apparmor_enabled=false install_headers=false"
sed -i 's/- jack$/- jack_test/' config.cfg
if [ "${LXC_NAME}" == "docker" ]
then
6 years ago
docker run -it -v $(pwd)/config.cfg:/algo/config.cfg -v ~/.ssh:/root/.ssh -v $(pwd)/configs:/algo/configs -e "USER_ARGS=${USER_ARGS}" travis/algo /bin/sh -c "chown -R 0:0 /root/.ssh && source env/bin/activate && ansible-playbook users.yml -e \"${USER_ARGS}\" -t update-users --skip-tags common"
else
6 years ago
ansible-playbook users.yml -e "${USER_ARGS}" -t update-users --skip-tags common
fi
6 years ago
if sudo openssl crl -inform pem -noout -text -in configs/$LXC_IP/pki/crl/jack.crt | grep CRL
then
echo "The CRL check passed"
else
echo "The CRL check failed"
exit 1
fi
6 years ago
if sudo openssl x509 -inform pem -noout -text -in configs/$LXC_IP/pki/certs/jack_test.crt | grep CN=jack_test
then
7 years ago
echo "The new user exists"
else
echo "The new user does not exist"
exit 1
fi