summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2010-02-10 10:33:39 -0500
committerMicah Anderson <micah@riseup.net>2010-02-10 10:33:39 -0500
commitac0dfbb713c4d2088add1ddb17d08fa2de72cb7e (patch)
tree4f9d2d751b417d6acbb669fbc580578e5b1f8407
parent2849ef277563377a140bacb2d9c05d20b38e5d2c (diff)
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
-rw-r--r--templates/sys.conf.erb4
1 files changed, 2 insertions, 2 deletions
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' %>