Re: Groovy Script to Skip Installation of Plugins and Enable Slave

2017-02-15 Thread Indra Gunawan (ingunawa)
Add option ‘-Djenkins.install.runSetupWizard=false’ to the JAVA_ARGS for Jenkins start-up. From: on behalf of Vikas Kumar Reply-To: "jenkinsci-users@googlegroups.com" Date: Wednesday, February 15, 2017

Re: Groovy Script to Skip Installation of Plugins and Enable Slave

2017-02-15 Thread Vikas Kumar
All, This stands solved now. To ignore the plugins, just use this echo ${JENKINS_VERSION} > /usr/share/jenkins/ref/jenkins.install.UpgradeWizard.state echo ${JENKINS_VERSION} > /usr/share/jenkins/ref/jenkins.install.InstallUtil.lastExecVersion and for the enabling slave, the answer here

Groovy Script to Skip Installation of Plugins and Enable Slave

2017-02-15 Thread Vikas Kumar
Hello Everyone, I am trying to automate initialization of Jenkins Docker container and looking to automate two parts. - Ignore this part to select plugins. I don't need this as I am installing required plugins at the build time