> I know this subject has been hashed over previously, but I'm not able to get 
> a resolution from the discussion. > See: 
> https://groups.google.com/forum/#!msg/puppet-users/UJecs2MgkZo/bgjZ8kOvUlYJ

> From what I understand, the problem with getting RHEL4 3.x puppet agent 
> working with puppet 3.x master (running on a modern/supported > platform) is 
> the crusty openssl on RHEL4. I got puppet 3.4.2 installed successfully via a 
> ruby gem, but it fails when communicating to my > master (on RHEL6) due to 
> SSL errrors. I've compiled openssl 1.0.1e on RHEL4, but have failed compiling 
> a couple different versions of ruby > against it. Does anyone have success 
> getting RHEL4 3.x puppet agents working they can share? BTW: Don't judge, 
> some of us need to support RHEL4 > even if the vendor doesn't anymore.

----

Sorry for the bad posting here. We have very minimal of these left. I have 
simply been turning off ssl verify mode on them to make them work.


In lib/ruby/site_ruby/1.9.1/puppet/network/http/connection.rb edit the function 
initialize_connection... right before the @connection return put 
@connection.verify_mode = OpenSSL::SSL::VERIFY_NONE,

Eg:
     @connection.use_ssl = use_ssl
      # Use configured timeout (#1176)
      @connection.read_timeout = Puppet[:configtimeout]
      @connection.open_timeout = Puppet[:configtimeout]

      cert_setup

      @connection.verify_mode = OpenSSL::SSL::VERIFY_NONE <--- this.
      @connection
    end

It's not the best way I'm sure, but I can't be bothered to put any effort into 
these dinosaurs.






This email communication and any files transmitted with it may contain
confidential and or proprietary information and is provided for the use of the
intended recipient only. Any review, retransmission or dissemination of this
information by anyone other than the intended recipient is prohibited. If you
receive this email in error, please contact the sender and delete this
communication and any copies immediately. Thank you.

http://www.encana.com

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/A233B8D667A4114D983511EE6E8C4389C8676F9E%40CGYEX1041.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to