From 5ffb235e215801a69da07ad37846f1ff2ffbdd8a Mon Sep 17 00:00:00 2001 From: Matthew Haughton <3flex@users.noreply.github.com> Date: Fri, 1 May 2015 14:39:34 -0400 Subject: [PATCH] params: support debian 8 Install from upstream by default like for other OSs --- manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/params.pp b/manifests/params.pp index a9673be5d..3eb85d950 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -20,7 +20,7 @@ } 'Debian': { if ($::operatingsystem == 'ubuntu' and $::lsbdistcodename in ['lucid', 'precise', 'trusty']) - or ($::operatingsystem == 'debian' and $::operatingsystemmajrelease in ['6', '7']) { + or ($::operatingsystem == 'debian' and $::operatingsystemmajrelease in ['6', '7', '8']) { $_module_os_overrides = { 'manage_repo' => true, 'daemon_user' => 'www-data',