mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-12 18:41:51 +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
|