Re: how to find how a Jenkins instance is installed?

2018-11-19 Thread gotviseryon
ns...@googlegroups.com " < > jenkins...@googlegroups.com > > *Date: *Monday, 19 November 2018 at 2:48 PM > *To: *"jenkins...@googlegroups.com " < > jenkins...@googlegroups.com > > *Subject: *Re: how to find how a Jenkins instance is installed? > &g

Re: how to find how a Jenkins instance is installed?

2018-11-19 Thread Mudit Kumar
s.com" Subject: Re: how to find how a Jenkins instance is installed? I'm not aware of any direct method from inside Jenkins that will report how it was installed. There are differences in the file system layout from the various installation techniques which could be used to guess which

Re: how to find how a Jenkins instance is installed?

2018-11-19 Thread Mark Waite
I'm not aware of any direct method from inside Jenkins that will report how it was installed. There are differences in the file system layout from the various installation techniques which could be used to guess which installer was used. For example: - If /etc/default/jenkins exists, then it

Re: how to find how a Jenkins instance is installed?

2018-11-19 Thread gotviseryon
I apologize for the delay in responding. Just got chance to check back on these. Yes Mark, you are right. I'm trying to determine if Jenkins was installed from apt/yum, rpm, MSI or war file. Is there a way to find how the installation was done? On Wednesday, November 14, 2018 at 10:02:17

Re: how to find how a Jenkins instance is installed?

2018-11-14 Thread Mark Waite
I thought the question was trying to determine if the Jenkins installation was done from apt, rpm, MSI, chocolatey, or using a war file. Interesting the different assumptions we make to a question. Can the original questioner clarify what they were asking? On Wed, Nov 14, 2018 at 7:33 PM Martin

Re: how to find how a Jenkins instance is installed?

2018-11-14 Thread Martin d'Anjou
If you mean how do you test if an instance is ready (after a restart), you can use curl. httpCode=$(curl -s -w "%{http_code}" -X GET $JENKINS_URL) while [[ $httpCode != "200" ]]; do sleep 5 httpCode=$(curl -s -w "%{http_code}" -X GET $JENKINS_URL) done echo "Jenkins is ready." On

Re: how to find how a Jenkins instance is installed?

2018-11-14 Thread Victor Martinez
There are a bunch of different options to install Jenkins based on the OS: - https://jenkins.io/doc/book/installing/ And on the top those options, there are some configuration management tool which can help to provisioning Jenkins on any machine, such as puppet/ansible/chef... Off the top of

how to find how a Jenkins instance is installed?

2018-11-14 Thread gotviseryon
Hello, how do I find out how a Jenkins instance has been installed? -- 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