nova: set install_utilities = false (commented)

The nova module has added a "utilities" class, which installs
libguestfs-tools. Since this installs a slew of dependencies that
only make sense to install on a compute node, the install_utilities
parameter was subsequently added in Git, but has not yet been released
to the Puppet Forge. So as to not make people depend on a version of
puppetlabs-nova that isn't yet on the Puppet Forge, accept the silly
package installation for now, but add the parameter, to be uncommented
when the fix makes it into a module release.
This commit is contained in:
Florian Haas 2014-03-07 14:34:09 +00:00
parent b3c3d9dde7
commit abc950b685
1 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,8 @@ class kickstack::nova::config inherits kickstack {
auth_strategy => 'keystone',
verbose => $::kickstack::verbose,
debug => $::kickstack::debug,
glance_api_servers => "${glance_api_servers}:9292"
glance_api_servers => "${glance_api_servers}:9292",
# install_utilities => false
}
}
'qpid': {
@ -35,7 +36,8 @@ class kickstack::nova::config inherits kickstack {
auth_strategy => 'keystone',
verbose => $::kickstack::verbose,
debug => $::kickstack::debug,
glance_api_servers => "${glance_api_servers}:9292"
glance_api_servers => "${glance_api_servers}:9292",
# install_utilities => false
}
}
}