-
Bug
-
Resolution: Cannot Reproduce
-
Blocker
Hello,
I'm using a groovy-script to look for public-projects, executing this with the jenkins-cli:
java -jar jenkins-cli.jar -s http://<url>:8080/ groovy displayJobWithAnonymousAccess.groovy
(using this script: http://scriptlerweb.appspot.com/script/show/74001)
With LDAP-authentification everything is working fine (using a ssh-key in the personal configuration - me/configure).
But changing the authentication-type to crowd2 it is not working anymore.
Before:
+ java -jar jenkins-cli.jar -s http://<url>:8080/ groovy displayJobWithAnonymousAccess.groovy
+ [ -s ./result ]
+ cat ./result
Anonymous-User has Access to BusyWaiting - Permission[class hudson.scm.SCM,Tag]:[anonymous]
+ exit 1
Build step 'Execute shell' marked build as failure
After:
+ java -jar jenkins-cli.jar -s http://<url>:8080/ groovy displayJobWithAnonymousAccess.groovy
Exception in thread "main" java.io.EOFException
at java.io.DataInputStream.readBoolean(Unknown Source)
at hudson.cli.Connection.readBoolean(Connection.java:90)
at hudson.cli.CLI.authenticate(CLI.java:560)
at hudson.cli.CLI._main(CLI.java:400)
at hudson.cli.CLI.main(CLI.java:330)
Build step 'Execute shell' marked build as failure
I don't know where to search for this failure. Any idea?
Thomas