From 039a1b998bf517c9eaa4a3e451d0c14ea5bdf783 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 11 Jul 2017 15:08:47 -0300 Subject: Spice client not available on stretch onwards --- manifests/utils/virtual.pp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/manifests/utils/virtual.pp b/manifests/utils/virtual.pp index 1533a77..f9d0cc9 100644 --- a/manifests/utils/virtual.pp +++ b/manifests/utils/virtual.pp @@ -11,12 +11,18 @@ class nodo::utils::virtual ( # For graphical interfacing with virtual machines 'xpra', 'virt-viewer', - 'spice-client', 'spice-client-gtk', ]: ensure => $ensure, } + package { 'spice-client': + ensure => $::lsbdistcodename ? { + 'jessie' => installed, + default => absent, + }, + } + # We're not managing this package as we're favouring the # virtualbox package which doesn't needs it. #package { [ -- cgit v1.2.3