We updated our test server to CentOS 6.4.
apache (2.2.15) is same version as 6.3 & Phusion Passenger (3.0.18) is also the same.
But when I run "managedsoftwareupdate" it fails on line 218 of /usr/local/munki/munkilib/fetch.py
Line 218: header['http_result_description'] = info.split(None, 2)[2]
It's trying to split the response header on " " and select the third element, only there is no third element.
On 6.3 it returns: HTTP/1.1 200 OK
But on 6.4 it only returns: HTTP/1.1 200
I've googled a bit and it seems to be a "feature" of Passenger? Any ideas?
We updated our test server to CentOS 6.4. apache (2.2.15) is same version as 6.3 & Phusion Passenger (3.0.18) is also the same.
But when I run "managedsoftwareupdate" it fails on line 218 of /usr/local/munki/munkilib/fetch.py Line 218:
header['http_result_description'] = info.split(None, 2)[2]
It's trying to split the response header on " " and select the third element, only there is no third element.
On 6.3 it returns:
HTTP/1.1 200 OK
But on 6.4 it only returns:
HTTP/1.1 200
I've googled a bit and it seems to be a "feature" of Passenger? Any ideas?