mirror of
				https://github.com/Ysurac/openmptcprouter-feeds.git
				synced 2025-03-09 15:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
case "$1" in
 | 
						|
	"openvpn-mbedtls")
 | 
						|
		openvpn --version | grep "$2.*SSL (mbed TLS)"
 | 
						|
		;;
 | 
						|
	"openvpn-openssl"|"openvpn-wolfssl")
 | 
						|
		openvpn --version | grep "$2.*SSL (OpenSSL)"
 | 
						|
		;;
 | 
						|
esac
 |