Re: Re: Templates Plugin (Jenkins Enterprise)

2015-10-05 Thread Walter Kacynski
I use the Enterprise Templates extensively. They are very powerful but difficult to debug at times. I run a second "Test" master that I use to stage template changes to make sure that everything goes as planned before issuing updates to my production jobs. The great thing about these is that

Re: [Rebuild plugin] Request for feedback about current behaviour for build cause

2015-10-05 Thread Walter Kacynski
I think that this is a problem with the rebuild plugin. It should be adding a UserCause to the chain. However, this would technically change the build if that build was relying on the state of how the build was triggered. Maybe rebuild could annotate the SCM badge with a special note if BTB

Re: Help with Deploy to Websphere plugin

2014-12-05 Thread Walter Kacynski
I use this plugin with WAS 8.5.5 and no problems. Are you running in Thinclient mode or are you point to the IBM JDK? On Thursday, December 4, 2014 1:15:38 PM UTC-5, Marcel F wrote: > > Did you get any further log information. May in the ffdc logs or in the > dmgr logs of WebSphere? > This blog

Re: New message with 1.565.11.1

2014-11-11 Thread Walter Kacynski
d because there was a reason for adding the > warning. > > You could try filing a support request with Cloudbees, asking them to fix > ZD-22406. > > On 11.11.2014, at 19:32, Walter Kacynski > wrote: > > > Sorry the subject of this message is inconsistent. The pr

Re: New message with 1.565.11.1

2014-11-11 Thread Walter Kacynski
Sorry the subject of this message is inconsistent. The problem occurs on plain LTS 1.565.3 as well as Enterprise 1.565.11.1 On Tuesday, November 11, 2014 1:28:55 PM UTC-5, Walter Kacynski wrote: > > I just updated to LTS 1.565.3 and now my master reports the following > message every-

New message with 1.565.11.1

2014-11-11 Thread Walter Kacynski
I just updated to LTS 1.565.3 and now my master reports the following message every-time that a job is executed: 24782 Nov 11, 2014 1:24:18 PM jenkins.model.lazy.LazyBuildMixIn removeRun 24783 WARNING: hudson.model.FreeStyleProject@35ef5dfc[WebSphere/Admin/SND/Environment_Artifact_Config] did

Re: HP Automation Automation Tool plugin TDConnectivity issue on Jenkins

2014-10-31 Thread Walter Kacynski
A few things that I have done to make sure it works... - Disable UAC on the computer - Make sure that you install with the url http:///qcbin/start_a.jsp?common=true - Secondly, I need to run the attached VBscript to launch IE before every test that is run. On Thursday, Octobe

Re: How to set "Environment variables" in "Global properties" of global Jenkins configuration programmatically?

2014-09-22 Thread Walter Kacynski
I use the following script to inject a username and password: usernamePassword = build.getEnvironment(null)[secret] def (username, password) = usernamePassword.split(':') e = new hudson.EnvVars() e.put(secret + '_USERNAME', username) e.put(secret + '_PASSWORD', password) build.environments.add(hu

Re: Authetication using LDAP and Local User

2014-08-29 Thread Walter Kacynski
Well, maybe I should elaborate... I have done this when the remote users is connecting via SSH with CLI commands. I have not done this for an interactive user thru the GUI. On Friday, August 29, 2014 12:06:25 PM UTC-4, Walter Kacynski wrote: > > I have done this with no problems usi

Re: Authetication using LDAP and Local User

2014-08-29 Thread Walter Kacynski
I have done this with no problems using the LDAP plugin and local users. -- 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...@googlegroup

Re: What are the difference between Jenkins and HP ALM?

2014-08-13 Thread Walter Kacynski
There is a Jenkins Plugin for HP ALM that allows you to run test cases after your build or deployment of code. We will be using this to verify if a recently built artifact passes our functional tests. On Wednesday, August 13, 2014 8:50:01 AM UTC-4, Manju wrote: > > Hi all, > I am a new user to

HTTP 403 on wiki.jenkins-ci.org

2014-08-12 Thread Walter Kacynski
Is anyone else getting HTTP 403 error messages when accessing certain URLs of the wiki site? It seems to be mostly the AJAX requests that are failing for me. I was trying to add labels to pages, watch, and favorite page functions aren't working either. These are the URLs that are failing for

Passing build result to a downstream build

2014-08-01 Thread Walter Kacynski
I'm using a post-build task https://wiki.jenkins-ci.org/display/JENKINS/Log+Parser+Plugin to change a build result to WARNING or FAILURE. I need to be able to pass this change / upgraded status to a job that is trigger by Paramaterized Trigger Plugin. Does anyone know how to do this? Thank-Y

Re: Enabling "RunScripts" in security set up

2014-04-14 Thread Walter Kacynski
14, 2014 1:17:54 PM UTC-4, VFloyd wrote: > > Thanks Walter. > > So this is necessary for the "Build Flow" as well as the "Job DSL" plugin? > > > > On Monday, April 14, 2014 9:59:27 AM UTC-7, Walter Kacynski wrote: >> >> This would allow any user t

Re: Enabling "RunScripts" in security set up

2014-04-14 Thread Walter Kacynski
This would allow any user to run a system groovy script thru the CLI or Groovy Plugin. On Monday, April 14, 2014 10:17:11 AM UTC-4, VFloyd wrote: > > Morning, > What functionality, exactly, would I be opening up if I enable > "RunScripts" in our security setup? > > Thanks > Vanetta > -- You re

Location of jenkins.err.log

2014-03-04 Thread Walter Kacynski
Is there a way to move the jenkins.err.log to a location other than the default of JENKINS_HOME? -- 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-user

Re: Credentials Plugin and Environment Variables

2013-12-06 Thread Walter Kacynski
rite a plugin that does that... > > > On 2 December 2013 17:54, Walter Kacynski > > wrote: > >> Is it possible to "export" the list of credentials for the job's current >> scope so that they can be accessed via environment variables for job built

Re: Problem with update sites

2013-12-06 Thread Walter Kacynski
I was experiencing the same issue. I attribute this to the fact that the stable update feed had not been updated to reflect 1.532.1 was available. On Thursday, December 5, 2013 10:28:41 AM UTC-5, Zoltán Ujhelyi wrote: > > Hi all, > > I have a strange issue with update center. Yesterday, I have f

Re: Parameterized Build, how to pass a JVM argument using Jenkins?

2013-12-02 Thread Walter Kacynski
The only way that I can think of doing this would be to update your build scripts to look for these environment variables so that they are passed into the JVM. Otherwise, you would have to call the java program from a second build step outside of your ANT script. On Monday, December 2, 2013 12

Re: Upgrade from 1.472 to 1.541 failing

2013-12-02 Thread Walter Kacynski
1.) All builds are cumulative so you just need to pick the version that you want to run. Please share the error message that you are seeing. Also, did you try searching http://issues.jenkins-ci.org for your error message? On Monday, December 2, 2013 12:54:55 PM UTC-5, bluntcoder wrote: > > Hel

Credentials Plugin and Environment Variables

2013-12-02 Thread Walter Kacynski
Is it possible to "export" the list of credentials for the job's current scope so that they can be accessed via environment variables for job built steps like shell scripts? Thank, Walt -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsu

Re: Release date of next LTS release

2013-12-02 Thread Walter Kacynski
I used the LTS download link and it was updated to version 1.532.1 It looks like the text on the page has not been updated as of yet, nor the LTS update center links. On Monday, December 2, 2013 12:32:44 PM UTC-5, MoBarger wrote: > > Any closer to defining a date for the general release? > >

Re: Difference btw. Enterprise Role-Based-Access-Control and Free Role-Strategy Plugin?

2013-11-19 Thread Walter Kacynski
I have used the Enterprise Version in a limited trial and I currently use the RegEx version in our PROD Jenkins instance. I like the simplicity and centralized management of the RegEx version. However, the RBAC (Enterprise) version allows for decentralized management which is great if you wa

Re: Unable to Start NEW SSH slave

2013-06-18 Thread Walter Kacynski
Yes, I can confirm that SSH functions correctly from the Master to the target computer successfully. Does anyone know how to enable additional logging or debugging functionality for this process? -Walt -- You received this message because you are subscribed to the Google Groups "Jenkins U

Re: LDAP Authentication: Change display name

2013-06-17 Thread Walter Kacynski
I felt this was a bug/improvement and I have opened a JIRA: https://issues.jenkins-ci.org/browse/JENKINS-18355 On Thursday, April 19, 2012 8:10:26 AM UTC-4, Edward Cullen wrote: > > Using Jenkins 1.460, LDAP auth is configured correctly. > > I would like to change field used to determine the disp

Unable to Start NEW SSH slave

2013-06-17 Thread Walter Kacynski
I'm trying to attache a new SSH based slave to my Jenkins 1.510 installation. However after creating the slave the master always complains that "This node is offline because Jenkins failed to launch the slave agent on it." However, clicking on the Slave log reveals NO output text. I have che

Job Generator generation slow

2013-05-02 Thread Walter Kacynski
I'm using the Job Generator plugin to generate 100 new jobs. I notice that each invocation of the generation takes about 3 seconds. This seems very long given the fact that it's executing an internal API call within the master. Does anyone know a way to speed up this process so that jobs are

Re: unable to disable automatic gzip responses

2013-04-29 Thread Walter Kacynski
g our mod_rewrite rules to strip the Accept-Encoding header to remove gzip as an option. On Monday, April 8, 2013 1:39:59 PM UTC-4, Walter Kacynski wrote: > > Did you verify the HTTP response as opposed to the Request? > > On Wednesday, December 26, 2012 9:32:53 PM UTC-5, Sunny wr

Re: unable to disable automatic gzip responses

2013-04-08 Thread Walter Kacynski
Did you verify the HTTP response as opposed to the Request? On Wednesday, December 26, 2012 9:32:53 PM UTC-5, Sunny wrote: > > Hi all, > > Version: 1.495 WAR, deployed on Tomcat7 Windows service. > > I'm trying to disable the CompressionFilter that is compressing all of > Jenkin's responses. > >

Recursive groups membership with LDAP plugin in Active Directory

2013-04-08 Thread Walter Kacynski
Are there any special flags required to enable recursive group lookup with the LDAP plugin against an Active Directory repository? I have no problems resolving group memberships if users are direct adds. Thank-You, Walt -- You received this message because you are subscribed to the Google Gro

Re: cron "H" syntax

2013-04-01 Thread Walter Kacynski
Did you ever find a solution for using "H/5"? I'm facing the same issue that you describe. Thanks. On Wednesday, May 23, 2012 6:34:42 PM UTC-4, Maven User wrote: > > "H" is a drop in for any of the time slots and/or *, so it felt natural > (for me) to try "H/5". > > To explain that in a diffe

Re: how to implement an invisible job property plugin

2013-02-04 Thread Walter Kacynski
I'm interested in doing something similar. Which jelly file are you referring to? -- 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...

Re: AD based Authentication for Jenkins from Local Accounts

2012-07-23 Thread Walter Kacynski
Did you add yourself with Administrator privileges in the Users/Groups panel before activating security? On Monday, July 23, 2012 4:18:51 AM UTC-4, krishna kurnala wrote: > > Hello Guys > > Can one of you guide me through the process involved, we are currently > using Jenkins Local Usernames/Pas