]> gitweb.fluxo.info Git - puppet-backupninja.git/commitdiff
the lvm and luks sys template should default to 'no' for both of these options.
authorMicah Anderson <micah@riseup.net>
Wed, 10 Feb 2010 15:33:39 +0000 (10:33 -0500)
committerMicah Anderson <micah@riseup.net>
Wed, 10 Feb 2010 15:33:39 +0000 (10:33 -0500)
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

templates/sys.conf.erb

index a684e8b7f675dbfe8c04f6d612b1619530cbce92..d15f82182f8eeded836a6a0e062502de104ae4f5 100644 (file)
@@ -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' %>