From ff7a8053322290142d14643971a3ff389eb1375d Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Wed, 24 Apr 2013 02:42:55 +0000 Subject: [PATCH] The facter osfamily of Ubuntu is Debian. Clean up facter osfamily matches to just use Debian, not Ubuntu. This is manually tested and confirmed to at least be the case on Oneiric, Precise and Quantal. Change-Id: I27b184ac419910f9c3271c3b4e57886333282a5f Reviewed-on: https://review.openstack.org/27399 Reviewed-by: Spencer Krum Reviewed-by: Clark Boylan Reviewed-by: James E. Blair Approved: Jeremy Stanley Reviewed-by: Jeremy Stanley Tested-by: Jenkins --- manifests/params.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/params.pp b/manifests/params.pp index a1212a4..516209d 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -10,14 +10,14 @@ class exim::params { $config_file = '/etc/exim/exim.conf' $conf_dir = '/etc/exim/' } - 'Debian', 'Ubuntu': { + 'Debian': { $package = 'exim4-daemon-light' $service_name = 'exim4' $config_file = '/etc/exim4/exim4.conf' $conf_dir = '/etc/exim4' } default: { - fail("Unsupported osfamily: ${::osfamily} The 'exim' module only supports osfamily Ubuntu or Redhat(slaves only).") + fail("Unsupported osfamily: ${::osfamily} The 'exim' module only supports osfamily Debian or RedHat (slaves only).") } } }