From: Silvio Rhatto Date: Fri, 1 Feb 2013 21:14:52 +0000 (-0200) Subject: Unison compatibility X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=3d91922d6a1a935ca3131bb2a775b846a64f2705;p=puppet-nodo.git Unison compatibility --- diff --git a/manifests/subsystems/utils/network.pp b/manifests/subsystems/utils/network.pp index 84454ad..0529130 100644 --- a/manifests/subsystems/utils/network.pp +++ b/manifests/subsystems/utils/network.pp @@ -30,6 +30,15 @@ class utils::network::minimal { package { 'unison': ensure => installed, } + + # For backwards compatibility + # See addversionno unison config parameter + package { 'unison2.32.52': + ensure => $::lsbdistcodename ? { + 'wheezy' => present, + default => absent, + } + } } class utils::network inherits utils::network::minimal {