OK, i figured out that this is connected to the signature check which I 
want to get rid of anyways.
As I learned was one nifty solution to add a file named *init.groovy* to 
JENKINS_HOME with the content:

*try
{
  // disable verification of signature of JSON file from update center
  hudson.model.UpdateSite.signatureCheck = false;
  print "Disabled signature check for update site\n";
}
catch (MissingPropertyException e)
{
  // ignore as is if no signature check flag is present, no signature check 
is done anyway
  print "No flag for signature check present\n";
}
*
That worked at least until 1.509 but not anymore :(
I'm trying to figure out if there is a new implementation which allows to 
turn of signature check via boolean value. But no luck so far.
Well, I am no skilled programmer.

Has someone eventually a hint?

Cheers
Jan

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to