Re: 'ansible-playbook: command not found' error when running from execute shell

2015-09-21 Thread Victor Martinez
Hi, Command not found message is about your shell context, likely your ansible-playbook command is not part of the path variable, have you checked your path variables in your slave? You could either set your path or use the full path. You can see those variables if you run the below command

Re: GUI with jenkins not opening on the slave machine

2015-09-21 Thread Victor Martinez
Let me ask you if you are launching your slave connection via windows services (point 6) or via JNLP connections (point 5) JNLP shouldn't run in the background AFAIK. Have you tried t

Re: Is there a way to provide build parameters through a dialog box ?

2015-09-21 Thread Vani Paridhyani
Hi! Yes it is possible. Check 'This build is parameterized' in the job. You can choose to give 'String Parameter' in your case. On Tuesday, September 22, 2015 at 10:55:47 AM UTC+5:30, Rohan Majumdar wrote: > > I am building a project with jenkins. > I am seeking a plugin or some usage technique

'ansible-playbook: command not found' error when running from execute shell

2015-09-21 Thread Vani Paridhyani
Hi! I want to know how to run ansible-playbook from ‘execute shell’ of jenkins. I am getting 'ansible-playbook: command not found' error. I am able to run the playbook by ssh’ng into the Jenkins box. -- You received this message because you are subscribed to the Google Groups "Jenkins Users"

Re: Run Ansible in jenkins

2015-09-21 Thread Vani Paridhyani
Hi! There is this https://wiki.jenkins-ci.org/display/JENKINS/Ansible+Plugin you can use. On Friday, January 9, 2015 at 8:58:11 PM UTC+5:30, Manikandan Santhi Selvam wrote: > > > > Hi > >I am new to jenkins. i am try to run ansible in my jenkins. > There is no ansible plugin available. > >

[workflow-plugin] Aborting doesn't stop downstream jobs

2015-09-21 Thread Anshu Arya
I have a job that starts more downstream jobs in parallel. Aborting the job does not abort the downstream jobs. Is this by design, am I using it wrong, or is this a bug/feature? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe

Is there a way to provide build parameters through a dialog box ?

2015-09-21 Thread Rohan Majumdar
I am building a project with jenkins. I am seeking a plugin or some usage technique with which we can provide the version number through a GUI with each build. My command is :- make I would like to provide version number from if possible through a dialog box through to the build process. Is that

Re: GUI with jenkins not opening on the slave machine

2015-09-21 Thread Rohan Majumdar
Yeah, I have followed the same tutorial while making the slave. Once again testing works fine but the GUI automation is not visible. I think it happens in the backfround. On Monday, September 21, 2015 at 6:09:37 PM UTC+5:30, Victor Martinez wrote: > > See the below wiki: > - > https://wiki.jenkin

Re: Jenkins Workflow and Timestamp plugin

2015-09-21 Thread Rinaldo DiGiorgio
On Monday, September 21, 2015 at 5:02:37 PM UTC-4, Daniel Beck wrote: > > IIRC it just needs to be added to the workflow using the snippet generator > » General build wrapper. > > > Thanks that cleared it up. I am using the Jenkins Mesos plugin and trying to figure out where latencies are com

Re: Jenkins Workflow and Timestamp plugin

2015-09-21 Thread Daniel Beck
IIRC it just needs to be added to the workflow using the snippet generator » General build wrapper. On 21.09.2015, at 22:40, Victor Martinez wrote: > It should be there: > > - Jira refs: https://issues.jenkins-ci.org/browse/JENKINS-27207 > - Release version 1.7+: > https://wiki.jenkins-ci.org

Has anyone looked at a node.js proxy for jenkins that allows one to rewrite pages and add content

2015-09-21 Thread Rinaldo DiGiorgio
I would like to be able to add pages and change the look and feel of many pages in Jenkins. I have done this before many times. Are there other efforts or approaches in this area. Rinaldo -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To un

Re: Jenkins Workflow and Timestamp plugin

2015-09-21 Thread Victor Martinez
It should be there: - Jira refs: https://issues.jenkins-ci.org/browse/JENKINS-27207 - Release version 1.7+: https://wiki.jenkins-ci.org/display/JENKINS/Timestamper Can you verify your plugins versions? Cheers On Monday, 21 September 2015 22:32:14 UTC+2, Rinaldo DiGiorgio wrote: > > Hi, > >

When editing a script in a Jenkins text area -- has anyone looked into having language aware editors be enabled

2015-09-21 Thread Rinaldo DiGiorgio
Has anyone tried to enable javascript based language editors for all the times one can enter code in a Jenkins text area. I prefer to use SCM systems but the turn around time for that is too slow when doing development. It would be a big productivity boost to have a language editor be available

Re: Projects tied to a NODE

2015-09-21 Thread Victor Martinez
You could use some groovy script: - https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Script+Console println "JobName|Assigned label" Jenkins.instance.items.each { println "${it.name}|${it.assignedLabel}" } Further details: - http://javadoc.jenkins-ci.org/hudson/model/AbstractProject.html I

Jenkins Workflow and Timestamp plugin

2015-09-21 Thread Rinaldo DiGiorgio
Hi, Having time stamping in the *Console Outpu*t and in the *Workflow Steps* would be very useful IMO. Given the additional capabilities of workflow with steps and parallel, having a timestamp is very useful. I installed the *Timestamp* *Plugin* and did not see any timestamps in my workflo

weak ephemeral Diffie-Hellman

2015-09-21 Thread Indra Gunawan (ingunawa)
To All, We as much as possible are using the Jenkins LTS RPM to setup Jenkins. We enable the HTTPS on a different port for instance 9081. In existing Jenkins we do not use a webserver or proxy server to take care of the HTTPS. We generate keystore with Java keytool. keytool -genkey -alias hd

Re: Update jobs via Script Console does not take effect

2015-09-21 Thread Daniel Beck
You forgot to `start(Job, boolean)` the trigger you added. You'll probably also need to `stop()` any existing SCMTrigger that gets replaced by yours. On 21.09.2015, at 16:11, Sverre Moe wrote: > It seems when I updated a Job configuration with Groovy in the Script console > it didn't really ta

Update jobs via Script Console does not take effect

2015-09-21 Thread Sverre Moe
It seems when I updated a Job configuration with Groovy in the Script console it didn't really take effect. def jenkinsInstance = jenkins.model.Jenkins.getInstance() def developmentView = jenkinsInstance.getView("Development") developmentView.getItems().each { project -> def trigger = new hud

Projects tied to a NODE

2015-09-21 Thread Eric Naitove
Is there a way to list all my NODES and the specific Projects tied to each NODE? -- 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 jenkinsci-users+unsubscr...@go

Re: GUI with jenkins not opening on the slave machine

2015-09-21 Thread Victor Martinez
See the below wiki: - https://wiki.jenkins-ci.org/display/JENKINS/Step+by+step+guide+to+set+up+master+and+slave+machines On Monday, 21 September 2015 12:41:04 UTC+2, Rohan Majumdar wrote: > > And yeah I am using windows Vista as a slave. > Windows 7 is the master > > On Monday, September 21, 2015

Re: GUI with jenkins not opening on the slave machine

2015-09-21 Thread Rohan Majumdar
And yeah I am using windows Vista as a slave. Windows 7 is the master On Monday, September 21, 2015 at 4:08:16 PM UTC+5:30, Rohan Majumdar wrote: > > I have installed the java service on the slave, is that not JNLP. > Can you please elaborate what do you mean by JNLP > > On Monday, September 21, 2

Re: GUI with jenkins not opening on the slave machine

2015-09-21 Thread Rohan Majumdar
I have installed the java service on the slave, is that not JNLP. Can you please elaborate what do you mean by JNLP On Monday, September 21, 2015 at 12:36:06 PM UTC+5:30, Victor Martinez wrote: > > Hi, > > Are you using Windows slaves? If so, have you configured your windows in > order to suppo

.ssh/config file not read?

2015-09-21 Thread Karsten K
Hi all, sorry in case for a duplicated question, but by scrolling through various forums I couldn't find any concrete info. I have the feeling that jenkins doesn't really read my ssh-config file. On my master: created a certificate called 'jenkins'. I copied this identityfile on each slave.

Re: 3rd party packages version control

2015-09-21 Thread AB
Oh I am so sorry I missed the update on my query. We have codebase in both C and Python. There are few 3rd party libraries that we have in make process. The requirement actually is to map the 3rd party packages that we would need to ship with each make/build to customer end. A list with direct

Re: GUI with jenkins not opening on the slave machine

2015-09-21 Thread Victor Martinez
Hi, Are you using Windows slaves? If so, have you configured your windows in order to support interactive sessions? IMO, I do prefer to use JNLP connections rather than Windows service connections since it does allow interactive sessions by default. Can you try to run your slave as jnlp conne