diff options
Diffstat (limited to 'manifests/subsystem/crypttab.pp')
| -rw-r--r-- | manifests/subsystem/crypttab.pp | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/manifests/subsystem/crypttab.pp b/manifests/subsystem/crypttab.pp new file mode 100644 index 0000000..749569c --- /dev/null +++ b/manifests/subsystem/crypttab.pp @@ -0,0 +1,15 @@ +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'], +    } +  } +} | 
