I'm installing Jenkins 1.532-1.1 on Ubuntu 12.04, and I need to install it using apt-get
repo. I ran following three commands which installs latest Jenkins just fine:
wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | apt-key add -
echo "deb http://pkg.jenkins-ci.org/debian binary/" >> /etc/apt/sources.list
apt-get update
But I need to install this specific version 1.532-1.1 (for a reason that is beyond my control). I tried apt-get install jenkins=1.532-1.1
, this gives version not found error.
I've had a look at this link http://pkg.jenkins-ci.org/debian/ but installing *.deb is not option for me.
Any idea how I can install jenkins 1.532-1.1 using apt-get?