Actions
Bug #6843
closedBug #6831: Use HTTP for inventory handling on AIX to prevent minicurl errors
minicurl on AIX tries to use a function that is not defined due to OpenSSL absence
Status:
Released
Priority:
1 (highest)
Assignee:
Category:
System techniques
Target version:
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
Name check:
Fix check:
Regression:
Description
This:
$ua->ssl_opts( verify_hostname => 0, SSL_verify_mode => 0
Won't work on AIX (no ssl support in perl)
We should instead do:
if ( LWP::UserAgent->can("ssl_opts") ) { $ua->ssl_opts( verify_hostname => 0, SSL_verify_mode => 0 ); }
Actions