blob: 64470052b48e30fcb379060b644cafd40c761680 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class crypttab(
$type
) {
file { "/etc/crypttab":
source => "puppet:///modules/nodo/etc/crypttab/${type}",
owner => "root",
group => "root",
mode => 0644,
ensure => present,
notify => Exec['update-initramfs'],
}
}
|