Bug #1725
Unattended installation returns HTTP 200 when an error occurs
Description
I tried to install a new machine with a non-finished puppet master. This gave a message:
Failed to clean any old certificates or add the autosign entry. Terminating the build!
This is to be expected, but since it's a HTTP 200 the actual error was hard to track down. It wasn't logged and the kickstart just asked for the URL instead of warning me that the kickstart was invalid (though I don't know if anaconda checks http status codes).
Associated revisions
History
#1
Updated by Ewoud Kohl van Wijngaarden over 10 years ago
For the record, I tested with CentOS 5 and 6 and both behave as expected. I used the following PHP script (forgive me :P):
header('HTTP/1.1 500 Internal Server Error');
echo 'Failed to clean any old certificates or add the autosign entry. Terminating the build!';
When booting it gives an error:
Error downloading kickstart file
Unable to download the kickstart file. Please modify the kickstart parameter below or press Cancel to proceed as an interactive installation.
#2
Updated by Ohad Levy over 10 years ago
- Target version set to 1.0
#3
Updated by Anonymous over 10 years ago
- Status changed from New to Closed
- % Done changed from 0 to 100
Applied in changeset 26f75f44a91f87a50e2428e954ab847f761c2e87.
Return a HTTP 500 when we fail on handle_ca (fixes #1725)