secureserver: Disable FIPS mode for stunnel

It's unnecessary for curl testing, and it can otherwise cause
stunnel to fail to start if OpenSSL doesn't support FIPS mode.
This commit is contained in:
Dan Fandrich 2014-02-08 11:51:28 +01:00
parent 85a4df8b79
commit 2d8623e85d
1 changed files with 4 additions and 2 deletions

View File

@ -206,7 +206,7 @@ if((!$ver_major) || (!$ver_minor)) {
$stunnel_version = (100*$ver_major) + $ver_minor;
#***************************************************************************
# Verify minimmum stunnel required version
# Verify minimum stunnel required version
#
if($stunnel_version < 310) {
print "$ssltext Unsupported stunnel version $ver_major.$ver_minor\n";
@ -252,6 +252,7 @@ if($stunnel_version >= 400) {
CApath = $path
cert = $certfile
debug = $loglevel
fips = no
socket = $socketopt";
if($stunnel !~ /tstunnel(\.exe)?"?$/) {
print STUNCONF "
@ -279,8 +280,9 @@ if($stunnel_version >= 400) {
print "cert = $certfile\n";
print "pid = $pidfile\n";
print "debug = $loglevel\n";
print "output = $logfile\n";
print "fips = no\n";
print "socket = $socketopt\n";
print "output = $logfile\n";
print "foreground = yes\n";
print "\n";
print "[curltest]\n";