ensure=>present on documentation

`midonet_host_registry` and `midonet_gateway` are *ensurable* types,
that means we need to set `ensure=>present` on them to force the
creation when does not exist and the idempotency when it does. This
patch adds this statement on documentation.

Change-Id: Ifc879d0a7b2540a2efd3dfd238f4407960c5b7fc
This commit is contained in:
Jaume Devesa 2015-08-17 11:49:14 +02:00
parent f141d8f1e8
commit aed06df979

View File

@ -243,6 +243,7 @@ should be running in the host we are registering.
This is the way to use it:
midonet_host_registry {$::fqdn:
$ensure => present,
$midonet_api_url => 'http://controller:8080',
$username => 'admin',
$password => 'admin',
@ -252,7 +253,7 @@ This is the way to use it:
$tunnelzone_type => 'gre'
}
Note:
Notes:
* **midonet\_api\_url**, **username**, **password**, **tenant\_\name**:
Credentials to authenticate to Keystone through the MidoNet API service.
@ -282,7 +283,8 @@ accessible from the Internet.
This is the way to use it:
midonet_gateway {'hostname':
midonet_gateway {$::fqdn:
ensure => present,
midonet_api_url => 'http://controller:8080',
username => 'admin',
password => 'admin',