Project

General

Profile

Actions

Bug #6843

closed

Bug #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

Added by Matthieu CERDA almost 9 years ago. Updated over 8 years ago.

Status:
Released
Priority:
1
Category:
System techniques
Target version:
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 #1

Updated by Matthieu CERDA almost 9 years ago

  • Status changed from New to In progress
Actions #2

Updated by Matthieu CERDA almost 9 years ago

  • Status changed from In progress to Pending technical review
  • Assignee changed from Matthieu CERDA to Benoît PECCATTE
  • Pull Request set to https://github.com/Normation/rudder-techniques/pull/704
Actions #3

Updated by Matthieu CERDA almost 9 years ago

  • Status changed from Pending technical review to Pending release
  • % Done changed from 0 to 100
Actions #5

Updated by Vincent MEMBRÉ over 8 years ago

  • Parent task set to #6831
Actions #6

Updated by Vincent MEMBRÉ over 8 years ago

  • Status changed from Pending release to Released

This bug has been fixed in Rudder 3.1.0 which was released today.

Actions

Also available in: Atom PDF