diff options
Diffstat (limited to 'manifests/utils/desktop/vnc.pp')
-rw-r--r-- | manifests/utils/desktop/vnc.pp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/utils/desktop/vnc.pp b/manifests/utils/desktop/vnc.pp index 6f8bb99..c7118c6 100644 --- a/manifests/utils/desktop/vnc.pp +++ b/manifests/utils/desktop/vnc.pp @@ -1,7 +1,9 @@ -class nodo::utils::desktop::vnc { +class nodo::utils::desktop::vnc ( + $ensure = 'installed', +) { package { [ 'tightvncserver', ]: - ensure => present, + ensure => $ensure, } } |