diff options
-rw-r--r-- | manifests/sys.pp | 4 | ||||
-rw-r--r-- | templates/sys.conf.erb | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/manifests/sys.pp b/manifests/sys.pp index 973f880..ac42e37 100644 --- a/manifests/sys.pp +++ b/manifests/sys.pp @@ -20,7 +20,9 @@ define backupninja::sys($order = 30, $dosfdisk = yes, $hardware = yes, $hardwarefile = '/var/backups/hardware.txt', - $dohwinfo = yes + $dohwinfo = yes, + $doluks = no, + $dolvm = no ) { include backupninja::client::defaults file { "${backupninja::client::defaults::configdir}/${order}_${name}.sys": diff --git a/templates/sys.conf.erb b/templates/sys.conf.erb index b0ae623..a684e8b 100644 --- a/templates/sys.conf.erb +++ b/templates/sys.conf.erb @@ -14,3 +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' %> |