From: Richard Pijnenburg Date: Wed, 26 Feb 2014 10:52:54 +0000 (+0100) Subject: Fix fail message X-Git-Tag: 1.5.0~21^2~2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=95c0634897465d4a34b26b27978bd11d01a3f2d0;p=puppet-modules%2Fpuppetlabs-apt.git Fix fail message the fail message was including a fact that was not used in the whole case statement and caused some confusion. --- diff --git a/manifests/params.pp b/manifests/params.pp index b35bb1c..84d5d0f 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -36,7 +36,7 @@ class apt::params { } } default: { - fail("Unsupported osfamily (${::osfamily}) or lsbdistid (${::lsbdistid})") + fail("Unsupported lsbdistid (${::lsbdistid})") } } }