Allow to export separated client config and wrote ovpn_getclient_all.

This commit is contained in:
Robin Schneider
2015-03-13 00:32:40 +01:00
parent 8d8f19d951
commit e6e2221d8b
5 changed files with 103 additions and 10 deletions

22
bin/ovpn_getclient_all Executable file
View File

@ -0,0 +1,22 @@
#!/bin/bash
## @licence AGPLv3 <https://www.gnu.org/licenses/agpl-3.0.html>
## @author Copyright (C) 2015 Robin Schneider <ypid@riseup.net>
if [ -z "$OPENVPN" ]; then
export OPENVPN="$PWD"
fi
if ! source "$OPENVPN/ovpn_env.sh"; then
echo "Could not source $OPENVPN/ovpn_env.sh."
exit 1
fi
pushd "$EASYRSA_PKI"
for name in issued/*.crt; do
name=${name%.crt}
name=${name#issued/}
if [ "$name" != "$OVPN_CN" ]; then
ovpn_getclient "$name" separated
ovpn_getclient "$name" combined-save
fi
done
popd