
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
14 lines
303 B
Puppet
14 lines
303 B
Puppet
# Creates floating networks
|
|
define nova::manage::floating ( $network ) {
|
|
|
|
File['/etc/nova/nova.conf'] -> Nova_floating[$name]
|
|
Exec<| title == 'nova-db-sync' |> -> Nova_floating[$name]
|
|
|
|
nova_floating { $name:
|
|
ensure => present,
|
|
network => $network,
|
|
provider => 'nova_manage',
|
|
}
|
|
|
|
}
|