aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/crypttab.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/subsystem/crypttab.pp')
-rw-r--r--manifests/subsystem/crypttab.pp15
1 files changed, 0 insertions, 15 deletions
diff --git a/manifests/subsystem/crypttab.pp b/manifests/subsystem/crypttab.pp
deleted file mode 100644
index 749569c..0000000
--- a/manifests/subsystem/crypttab.pp
+++ /dev/null
@@ -1,15 +0,0 @@
-class nodo::subsystem::crypttab(
- $type,
- $manage = hiera('nodo::crypttab::manage', false)
-) {
- if $manage == true {
- file { "/etc/crypttab":
- source => "puppet:///modules/nodo/etc/crypttab/${type}",
- owner => "root",
- group => "root",
- mode => 0644,
- ensure => present,
- notify => Exec['update-initramfs'],
- }
- }
-}