From: Stephen Gran Date: Mon, 29 Jun 2009 22:19:24 +0000 (+0100) Subject: Use facter to tell us which hosts need this module X-Git-Url: https://git.adam-barratt.org.uk/?a=commitdiff_plain;h=4ad82d35d192f96b0a7a187bffcf8660ff3784c6;p=mirror%2Fdsa-puppet.git Use facter to tell us which hosts need this module Signed-off-by: Stephen Gran --- diff --git a/manifests/site.pp b/manifests/site.pp index 953000e66..a88b72801 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -72,8 +72,8 @@ node default { { include geodns } default: {} } -} - -node penalosa inherits default { - include hosts + case $brokenhosts { + "true": { include hosts } + default: {} + } }