]> review.fuel-infra Code Review - puppet-modules/puppetlabs-apt.git/commitdiff
Fix fail message
authorRichard Pijnenburg <richard@ispavailability.com>
Wed, 26 Feb 2014 10:52:54 +0000 (11:52 +0100)
committerRichard Pijnenburg <richard@ispavailability.com>
Wed, 26 Feb 2014 10:52:54 +0000 (11:52 +0100)
the fail message was including a fact that was not used in the whole case statement and caused some confusion.

manifests/params.pp

index b35bb1c8d91b0a667d2fbb3a2ae986628db86261..84d5d0f67a588608a6bac65f054d9ce7faa58cd2 100644 (file)
@@ -36,7 +36,7 @@ class apt::params {
       }
     }
     default: {
-      fail("Unsupported osfamily (${::osfamily}) or lsbdistid (${::lsbdistid})")
+      fail("Unsupported lsbdistid (${::lsbdistid})")
     }
   }
 }