Merge "Allow zuul & nodepool to be installed on one VM"
This commit is contained in:
commit
57e898fa26
@ -30,12 +30,12 @@ class nodepool (
|
||||
$environment = {},
|
||||
) {
|
||||
|
||||
$packages = [
|
||||
'python-lxml', # needed by python-keystoneclient, has system bindings
|
||||
]
|
||||
|
||||
package { $packages:
|
||||
ensure => present,
|
||||
# needed by python-keystoneclient, has system bindings
|
||||
# Zuul and Nodepool both need it, so make it conditional
|
||||
if ! defined(Package['python-lxml']) {
|
||||
package { 'python-lxml':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
class { 'mysql::server':
|
||||
|
@ -54,7 +54,6 @@ class zuul (
|
||||
$packages = [
|
||||
'gcc', # yappi requires this to build
|
||||
'python-lockfile',
|
||||
'python-lxml', # needed by python-keystoneclient, has system bindings
|
||||
'python-paste',
|
||||
'python-webob',
|
||||
]
|
||||
@ -69,6 +68,14 @@ class zuul (
|
||||
require => Class['pip'],
|
||||
}
|
||||
|
||||
# needed by python-keystoneclient, has system bindings
|
||||
# Zuul and Nodepool both need it, so make it conditional
|
||||
if ! defined(Package['python-lxml']) {
|
||||
package { 'python-lxml':
|
||||
ensure => present,
|
||||
}
|
||||
}
|
||||
|
||||
# A lot of things need yaml, be conservative requiring this package to avoid
|
||||
# conflicts with other modules.
|
||||
if ! defined(Package['python-yaml']) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user