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