From: Micah Anderson Date: Wed, 10 Feb 2010 15:33:39 +0000 (-0500) Subject: the lvm and luks sys template should default to 'no' for both of these options. X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=ac0dfbb713c4d2088add1ddb17d08fa2de72cb7e;p=puppet-backupninja.git the lvm and luks sys template should default to 'no' for both of these options. turning them on by default means that you get warnings/errors for systems that do not have either of these. you should opt-in, not opt-out --- diff --git a/templates/sys.conf.erb b/templates/sys.conf.erb index a684e8b..d15f821 100644 --- a/templates/sys.conf.erb +++ b/templates/sys.conf.erb @@ -14,5 +14,5 @@ partitions = <%= partitions ? 'yes' : 'no' %> dosfdisk = <%= dosfdisk ? 'yes' : 'no' %> hardware = <%= hardware ? 'yes' : 'no' %> dohwinfo = <%= dohwinfo ? 'yes' : 'no' %> -luksheaders = <%= doluks ? 'yes' : 'no' %> -lvm = <%= dolvm ? 'yes' : 'no' %> +luksheaders = <%= doluks ? 'no' : 'yes' %> +lvm = <%= dolvm ? 'no' : 'yes' %>