]> gitweb.fluxo.info Git - puppet-backupninja.git/commitdiff
Reverting "the lvm and luks sys template should default to 'no' for both of these...
authorMicah Anderson <micah@riseup.net>
Wed, 14 Apr 2010 18:27:36 +0000 (14:27 -0400)
committerMicah Anderson <micah@riseup.net>
Wed, 14 Apr 2010 18:27:36 +0000 (14:27 -0400)
I misunderstood the ternary operator here

templates/sys.conf.erb

index d15f82182f8eeded836a6a0e062502de104ae4f5..a684e8b7f675dbfe8c04f6d612b1619530cbce92 100644 (file)
@@ -14,5 +14,5 @@ partitions = <%= partitions ? 'yes' : 'no' %>
 dosfdisk = <%= dosfdisk ? 'yes' : 'no' %>
 hardware = <%= hardware ? 'yes' : 'no' %>
 dohwinfo = <%= dohwinfo ? 'yes' : 'no' %>
-luksheaders = <%= doluks ? 'no' : 'yes' %>
-lvm = <%= dolvm ? 'no' : 'yes' %>
+luksheaders = <%= doluks ? 'yes' : 'no' %>
+lvm = <%= dolvm ? 'yes' : 'no' %>