From d027d35e2d3d422262ad6d204508528de6df1ed7 Mon Sep 17 00:00:00 2001 From: Cody Herriges Date: Wed, 9 May 2012 15:47:48 -0700 Subject: [PATCH] Fixing a couple style discrepancies. Update a couple minor style things that were noticed while making previous changes. --- manifests/init.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index ad74b80..02386ff 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -13,7 +13,7 @@ # [Remember: No empty lines between comments and class definition] class java( $distribution = 'jdk', - $version = 'installed' + $version = 'present' ) { validate_re($distribution, '^jdk$|^jre$|^java.*$') @@ -51,7 +51,7 @@ class java( } } default: { - fail("operatingsystem distribution $lsbdistcodename is not supported") + fail("operatingsystem distribution ${lsbdistcodename} is not supported") } } @@ -65,7 +65,7 @@ class java( } default: { - fail("operatingsystem $operatingsystem is not supported") + fail("operatingsystem ${operatingsystem} is not supported") } }