26 lines
		
	
	
		
			603 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			603 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
## @licence MIT <http://opensource.org/licenses/MIT>
 | 
						|
## @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
 | 
						|
if [ -z "$EASYRSA_PKI" ]; then
 | 
						|
    export EASYRSA_PKI="$OPENVPN/pki"
 | 
						|
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
 |