From 95c0634897465d4a34b26b27978bd11d01a3f2d0 Mon Sep 17 00:00:00 2001 From: Richard Pijnenburg Date: Wed, 26 Feb 2014 11:52:54 +0100 Subject: [PATCH] Fix fail message the fail message was including a fact that was not used in the whole case statement and caused some confusion. --- manifests/params.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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})") } } } -- 2.45.2