summaryrefslogtreecommitdiff
path: root/vm-data
diff options
context:
space:
mode:
Diffstat (limited to 'vm-data')
-rwxr-xr-xvm-data/jenkins.customize7
1 files changed, 7 insertions, 0 deletions
diff --git a/vm-data/jenkins.customize b/vm-data/jenkins.customize
index be7bda0..bf5eb6e 100755
--- a/vm-data/jenkins.customize
+++ b/vm-data/jenkins.customize
@@ -54,6 +54,13 @@ chroot "$rootdir" install -d -o jenkins -g jenkins /var/lib/jenkins
chroot "$rootdir" apt-get install -y --no-remove jenkins
umount "$rootdir/proc"
+# Install the Bazaar and Git plugins for Jenkins.
+old="$(pwd)"
+cd "$rootdir/var/lib/jenkins/plugins"
+wget --no-check-certificate http://updates.jenkins-ci.org/latest/bazaar.hpi
+wget --no-check-certificate http://updates.jenkins-ci.org/latest/git.hpi
+cd "$old"
+
# Remove the policy-rc.d so that things do start when we boot into the system.
rm "$rootdir/usr/sbin/policy-rc.d"