From d382a7a9f0ee5c2fa349800738f60757c6228594 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Fri, 17 Feb 2012 15:15:17 -0800 Subject: [PATCH] Adds packages needed for translations update job. Change-Id: Ic35570b4a3fc04a78791d0ba4981d097373419dd --- modules/jenkins_master/manifests/init.pp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/jenkins_master/manifests/init.pp b/modules/jenkins_master/manifests/init.pp index cdc8393e29..e0aff2ba86 100644 --- a/modules/jenkins_master/manifests/init.pp +++ b/modules/jenkins_master/manifests/init.pp @@ -37,6 +37,7 @@ class jenkins_master { $packages = [ "jenkins", "python-pip", + "python-babel", "apache2" ] @@ -66,6 +67,12 @@ class jenkins_master { require => Package[python-pip] } + package { "git-review": + ensure => latest, + provider => pip, + require => Package[python-pip] + } + exec { "update apt cache": subscribe => [ File["/etc/apt/sources.list.d/jenkins.list"]], refreshonly => true,