2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-09-27 20:48:11 +00:00

Newer openssl doesn't even pretend ssl2 ever existed

This commit is contained in:
Jarrod Johnson
2018-06-12 09:16:57 -04:00
parent 5413980ba0
commit 6c1c6bf77d

View File

@@ -1,7 +1,7 @@
#!/usr/bin/awk -f
BEGIN {
if ((ENVIRON["USEOPENSSLFORXCAT"]) || (ENVIRON["AIX"])) {
server = "openssl s_client -quiet -no_ssl3 -no_ssl2 -connect " ENVIRON["XCATSERVER"] " -rand /bin/nice 2> /dev/null"
server = "openssl s_client -quiet -no_ssl3 -connect " ENVIRON["XCATSERVER"] " 2> /dev/null"
} else {
server = "/inet/tcp/0/127.0.0.1/400"
}