
This patch fixes all remaining parameter documentation in the nova module to be compatible with puppet-doc and documents all parameters in a standard way. Change-Id: I451078d46cb2498dd8e3c23bd8cbcc81b8845fcd
10 lines
257 B
Puppet
10 lines
257 B
Puppet
# == Class nova::utilities
|
|
#
|
|
# Extra packages used by nova tools
|
|
# unzip swig screen parted curl euca2ools - extra packages
|
|
class nova::utilities {
|
|
if $::osfamily == 'Debian' {
|
|
ensure_packages(['unzip', 'screen', 'parted', 'curl', 'euca2ools'])
|
|
}
|
|
}
|