Ensure that vcnproxy package ensure state can be specific in nova::vncproxy

This commit adds the ensure_package parameter to the nova::vncproxy class.

This parameter can be used to specify specific version of if the latest
version of this package should be installed.
This commit is contained in:
Dan Bode 2012-05-24 17:07:08 -07:00
parent 62009227be
commit d3707ba87b
1 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,8 @@
class nova::vncproxy(
$enabled = false,
$host = '0.0.0.0',
$port = '6080'
$enabled = false,
$host = '0.0.0.0',
$port = '6080',
$ensure_package = 'present'
) {
include nova::params