]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Switch from tightvncserver to tigervnc-standalone-server at nodo::utils::desktop...
authorSilvio Rhatto <rhatto@riseup.net>
Sun, 28 Jun 2020 16:49:35 +0000 (13:49 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sun, 28 Jun 2020 16:49:35 +0000 (13:49 -0300)
manifests/utils/desktop/vnc.pp

index c7118c6531811270179aaf39627ea526633d4e1a..13e78e17668e005d94f2e708587528c967909c2d 100644 (file)
@@ -2,8 +2,14 @@ class nodo::utils::desktop::vnc (
   $ensure = 'installed',
 ) {
   package { [
-    'tightvncserver',
+    'tigervnc-standalone-server',
   ]:
     ensure => $ensure,
   }
+
+  package { [
+    'tightvncserver',
+  ]:
+    ensure => absent,
+  }
 }