diff options
author | Micah Anderson <micah@riseup.net> | 2010-02-10 10:33:39 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2010-02-10 10:33:39 -0500 |
commit | ac0dfbb713c4d2088add1ddb17d08fa2de72cb7e (patch) | |
tree | 4f9d2d751b417d6acbb669fbc580578e5b1f8407 /templates | |
parent | 2849ef277563377a140bacb2d9c05d20b38e5d2c (diff) | |
download | puppet-backupninja-ac0dfbb713c4d2088add1ddb17d08fa2de72cb7e.tar.gz puppet-backupninja-ac0dfbb713c4d2088add1ddb17d08fa2de72cb7e.tar.bz2 |
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
Diffstat (limited to 'templates')
-rw-r--r-- | templates/sys.conf.erb | 4 |
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' %> |