[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2016-03-23 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck resolved as Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
Jason Swager I still maintain you're just seeing JENKINS-12543. 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-11024 
 
 
 
  Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others  
 
 
 
 
 
 
 
 
 

Change By:
 
 Daniel Beck 
 
 
 

Status:
 
 Reopened Resolved 
 
 
 

Resolution:
 
 Cannot Reproduce 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2016-03-23 Thread jswa...@alohaoi.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Swager commented on  JENKINS-11024 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others  
 
 
 
 
 
 
 
 
 
 
Sorry - this is my mistake. This doens't involve the ssh keys, just a normal username/password login. Please close this issue and I'll open a different one. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2016-03-23 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck commented on  JENKINS-11024 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others  
 
 
 
 
 
 
 
 
 
 
Jason Swager I don't see any use of the -i switch to use a non-default SSH key in your comment anywhere. How is that related to this issue? Looks like you're just experiencing JENKINS-12543. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2016-03-23 Thread jswa...@alohaoi.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Swager edited a comment on  JENKINS-11024 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others  
 
 
 
 
 
 
 
 
 
 Apologies, [~danielbeck], let me add the bare minimum reproduce steps.# I installed a fresh Jenkins via it's docker container.  The version it had was 1.642.2.# Once running and connected, added the Folder Plugin and the Role-based Authorization Strategy (in my production scenario, we're using CloudBees Roles and Groups - but this one will suffice)# Enable security via Manage Jenkins -> Global Security: Jenkins own database, allow users to sign-up, Role-Based Strategy.  # Create yourself as a user and sign in as yourself# Under Manage Jenkins -> Manage and Assign Roles: Under Manage Roles, make sure "admin" role has access to everything.  Under Assign Roles, remove "Anonymous" group from "admin", add yourself and give access to "admin" role.# Back at Jenkins main page, create a Folder (via New Item -> Folder) called "alpha"# In Folder "alpha" create a simple Freestyle Job called "test-job", make it do something - whatever.  No parameters is easiest.Now for the command line work (command may be slightly incorrect; typing from memory here)  - replace JENKINS_URL and userid as appropriate :# At the command line, get the jenkins-cli:  {{ curl -o jenkins-cli  { JENKINS_URL } /jnlpJars/jenkins-cli.jar }} # Make it easy - login as you:  {{ java -jar jenkins-cli.jar -s  { JENKINS_URL }  login --username  {your user}}}  userid # Verify you can see the alpha folder:  {{ java -jar jenkins-cli.jar -s  { JENKINS_URL }  list-jobs }} # Verify you can see the test-job job:  {{ java -jar jenkins-cli.jar -s  { JENKINS_URL }  list-jobs alpha }} # Try to run test-job:  {{ java -jar jenkins-cli.jar -s  { JENKINS_URL }  build alpha/test-job }} # I get the following when I try: {{ $ java -jar jenkins-cli.jar -s http://192.168.99.100:8080 build "alpha/test-job"No such job 'alpha/test-job' }} 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop 

[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2016-03-23 Thread jswa...@alohaoi.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Swager commented on  JENKINS-11024 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others  
 
 
 
 
 
 
 
 
 
 
Apologies, Daniel Beck, let me add the bare minimum reproduce steps. 
 

I installed a fresh Jenkins via it's docker container. The version it had was 1.642.2.
 

Once running and connected, added the Folder Plugin and the Role-based Authorization Strategy (in my production scenario, we're using CloudBees Roles and Groups - but this one will suffice)
 

Enable security via Manage Jenkins -> Global Security: Jenkins own database, allow users to sign-up, Role-Based Strategy.
 

Create yourself as a user and sign in as yourself
 

Under Manage Jenkins -> Manage and Assign Roles: Under Manage Roles, make sure "admin" role has access to everything. Under Assign Roles, remove "Anonymous" group from "admin", add yourself and give access to "admin" role.
 

Back at Jenkins main page, create a Folder (via New Item -> Folder) called "alpha"
 

In Folder "alpha" create a simple Freestyle Job called "test-job", make it do something - whatever. No parameters is easiest.
 
 
Now for the command line work (command may be slightly incorrect; typing from memory here): 
 

At the command line, get the jenkins-cli: {{curl -o jenkins-cli {JENKINS_URL}/jnlpJars/jenkins-cli.jar}} # Make it easy - login as you: {{java -jar jenkins-cli.jar -s {JENKINS_URL} 
 login --username  {your user} 
}}
 

Verify you can see the alpha folder: {{java -jar jenkins-cli.jar -s {JENKINS_URL} list-jobs}} # Verify you can see the test-job job: {{java -jar jenkins-cli.jar -s {JENKINS_URL} 
 list-jobs alpha}}
 

Try to run test-job: {{java -jar jenkins-cli.jar -s {JENKINS_URL} 
 build alpha/test-job}}
 

I get the following when I try: {{ $ java -jar jenkins-cli.jar -s http://192.168.99.100:8080 build "alpha/test-job" No such job 'alpha/test-job' }}
 

[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2016-03-23 Thread db...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Daniel Beck commented on  JENKINS-11024 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others  
 
 
 
 
 
 
 
 
 
 
Jason Swager Then please provide enough information so it can be reproduced by someone else, from scratch. I.e. no "I have this Jenkins instance I've worked on for years and it does not work with that". 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2016-03-22 Thread jswa...@alohaoi.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Swager reopened an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
It's reproducible! 
 
 
 
 
 
 
 
 
 
 Jenkins /  JENKINS-11024 
 
 
 
  Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others  
 
 
 
 
 
 
 
 
 

Change By:
 
 Jason Swager 
 
 
 

Resolution:
 
 Cannot Reproduce 
 
 
 

Status:
 
 Resolved Reopened 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2016-03-22 Thread jswa...@alohaoi.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Swager commented on  JENKINS-11024 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others  
 
 
 
 
 
 
 
 
 
 
I'm experiencing this problem. Using CloudBees folders and roles/groups with absolutely no permissions for non-authenticated users. 
I can list-job through the folders and see the job. But trying to build it via the cli results in "ERROR: No such job" 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2015-02-06 Thread dan...@beckweb.net (JIRA)















































Daniel Beck
 resolved  JENKINS-11024 as Cannot Reproduce


Some commands dont work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others
















No response to comment asking for updated information in over three months, so resolving as cannot Reproduce.





Change By:


Daniel Beck
(06/Feb/15 8:17 PM)




Status:


Open
Resolved





Resolution:


CannotReproduce



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2014-04-16 Thread yves.schum...@ti8m.ch (JIRA)














































Yves Schumann
 commented on  JENKINS-11024


Some commands dont work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others















Im Using Jenkins-CLI to setup jobs based on an deactivated job template and modify the activation state of the created jobs in a second step. It seems that I run into this issue as the creation of new jobs works as expected but the activation fails:


Calling jenkins api to create job 'eisfair__bcstorage' hudson.security.AccessDeniedException2: anonymous fehlt das Recht 'Job/Configure' 
 	at hudson.security.ACL.checkPermission(ACL.java:54)
 	at hudson.model.AbstractItem.checkPermission(AbstractItem.java:446)
 	...


Sad story as there are more than 500 jobs handled this way and it is absolutely annoying to do this by hand... 



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2014-04-16 Thread yves.schum...@ti8m.ch (JIRA)












































 
Yves Schumann
 edited a comment on  JENKINS-11024


Some commands dont work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others
















Im Using Jenkins-CLI to setup jobs based on an deactivated job template and modify the activation state of the created jobs in a second step. It seems that I run into this issue as the creation of new jobs works as expected but the activation fails:


Calling jenkins api to create job 'eisfair__bcstorage' hudson.security.AccessDeniedException2: anonymous fehlt das Recht 'Job/Configure' 
 	at hudson.security.ACL.checkPermission(ACL.java:54)
 	at hudson.model.AbstractItem.checkPermission(AbstractItem.java:446)
 	...


Why is there "anonymous" used? Username and password is the same as for job creation some milliseconds before!?

Sad story as there are more than 500 jobs handled this way and it is absolutely annoying to do this by hand... 



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2014-03-19 Thread jgl...@cloudbees.com (JIRA)














































Jesse Glick
 commented on  JENKINS-11024


Some commands dont work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others















JENKINS-12543 covers the problems with username/password authentication. I could not reproduce any problems in current trunk with SSH authentication.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2013-04-15 Thread dr...@java.net (JIRA)














































drnic
 commented on  JENKINS-11024


Some commands dont work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others















I wrote up the use of the CLI and how to setup this workaround http://starkandwayne.com/articles/2013/04/12/jenkins-builds-from-cli/



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2013-04-12 Thread dr...@java.net (JIRA)












































 
drnic
 edited a comment on  JENKINS-11024


Some commands dont work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others
















Having the same issue with -username  -password authentication.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2013-04-12 Thread dr...@java.net (JIRA)














































drnic
 commented on  JENKINS-11024


Some commands dont work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others















Having the same issue with -username/-password authentication.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2013-04-12 Thread dr...@java.net (JIRA)














































drnic
 commented on  JENKINS-11024


Some commands dont work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others















Sad panda for the 1.5 year old ticket 



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[JIRA] [cli] (JENKINS-11024) Some commands don't work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others

2013-04-12 Thread dr...@java.net (JIRA)














































drnic
 commented on  JENKINS-11024


Some commands dont work when using _jenkins-cli.jar with -i switch, get-job and update-job for sure, not certain about others















Confirming the workaround - I toggled the Job  Read checkbox for the anonymous user and I can now run builds via the CLI and anonymous users can not see anything when they visit the jenkins URL.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.