Fix python-jenkins duplicate package.

Change-Id: I9cf1679c230750c1cd14a0d73bc78652096fe391
Reviewed-on: https://review.openstack.org/14687
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: James E. Blair <corvus@inaugust.com>
Tested-by: Jenkins
This commit is contained in:
James E. Blair 2012-10-23 09:58:48 -07:00 committed by Jenkins
parent 002c77b547
commit 905b3a8859
2 changed files with 11 additions and 5 deletions

View File

@ -12,10 +12,10 @@ class jenkins::job_builder (
}
}
package { "python-jenkins":
ensure => latest, # okay to use latest for pip
provider => pip,
require => Class[pip]
if ! defined(Package['python-jenkins']) {
package { "python-jenkins":
ensure => present,
}
}
vcsrepo { "/opt/jenkins_job_builder":

View File

@ -78,7 +78,6 @@ class jenkins::master(
$packages = [
'python-babel',
'python-jenkins', # devstack-gate
'python-sqlalchemy', # devstack-gate
'ssl-cert',
]
@ -87,6 +86,13 @@ class jenkins::master(
ensure => "present",
}
# devstack-gate
if ! defined(Package['python-jenkins']) {
package { "python-jenkins":
ensure => present,
}
}
package { "jenkins":
ensure => "present",
require => Apt::Source['jenkins'],