From: Silvio Rhatto Date: Sun, 28 Jun 2020 16:49:35 +0000 (-0300) Subject: Switch from tightvncserver to tigervnc-standalone-server at nodo::utils::desktop... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=896b255735a404b9bb6f7b375ebbd8f0dc2037c3;p=puppet-nodo.git Switch from tightvncserver to tigervnc-standalone-server at nodo::utils::desktop::vnc --- diff --git a/manifests/utils/desktop/vnc.pp b/manifests/utils/desktop/vnc.pp index c7118c6..13e78e1 100644 --- a/manifests/utils/desktop/vnc.pp +++ b/manifests/utils/desktop/vnc.pp @@ -2,8 +2,14 @@ class nodo::utils::desktop::vnc ( $ensure = 'installed', ) { package { [ - 'tightvncserver', + 'tigervnc-standalone-server', ]: ensure => $ensure, } + + package { [ + 'tightvncserver', + ]: + ensure => absent, + } }