mirror of
https://github.com/trailofbits/algo.git
synced 2025-07-22 13:33:01 +02:00
* Refactoring, Linting and additional tests * Vultr: Undefined variable and deprecation notes fix * Travis-CI enable linters * Azure: Update python requirements * Update main.yml * Update install.sh * Add missing roles to ansible-lint * Linting for skipped roles * add .ansible-lint config
56 lines
1.3 KiB
Bash
Executable file
56 lines
1.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
USER_ARGS="{ 'server': '10.0.8.100', 'users': ['desktop', 'user1', 'user2'] }"
|
|
|
|
if [ "${DEPLOY}" == "docker" ]
|
|
then
|
|
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 root: /root/.ssh && chmod -R 600 /root/.ssh && source env/bin/activate && ansible-playbook users.yml -e \"${USER_ARGS}\" -t update-users"
|
|
else
|
|
ansible-playbook users.yml -e "${USER_ARGS}" -t update-users
|
|
fi
|
|
|
|
#
|
|
# IPsec
|
|
#
|
|
|
|
if sudo openssl crl -inform pem -noout -text -in configs/10.0.8.100/ipsec/.pki/crl/phone.crt | grep CRL
|
|
then
|
|
echo "The CRL check passed"
|
|
else
|
|
echo "The CRL check failed"
|
|
exit 1
|
|
fi
|
|
|
|
if sudo openssl x509 -inform pem -noout -text -in configs/10.0.8.100/ipsec/.pki/certs/user1.crt | grep CN=user1
|
|
then
|
|
echo "The new user exists"
|
|
else
|
|
echo "The new user does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
#
|
|
# WireGuard
|
|
#
|
|
|
|
if sudo test -f configs/10.0.8.100/wireguard/user1.conf
|
|
then
|
|
echo "WireGuard: The new user exists"
|
|
else
|
|
echo "WireGuard: The new user does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
#
|
|
# SSH tunneling
|
|
#
|
|
|
|
if sudo test -f configs/10.0.8.100/ssh-tunnel/user1.ssh_config
|
|
then
|
|
echo "SSH Tunneling: The new user exists"
|
|
else
|
|
echo "SSH Tunneling: The new user does not exist"
|
|
exit 1
|
|
fi
|