blob: 94da45bd38613ba332c9dcd3ae5309bf960db4dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class nodo::appliance inherits nodo::physical {
include sysctl::appliance
# fstab
file { "/etc/fstab":
source => "puppet://$appliance/modules/nodo/etc/fstab/appliance",
owner => "root",
group => "root",
mode => 0644,
ensure => present,
notify => Exec['update-initramfs'],
}
# crypttab
file { "/etc/crypttab":
source => "puppet://$appliance/modules/nodo/etc/crypttab/appliance",
owner => "root",
group => "root",
mode => 0644,
ensure => present,
notify => Exec['update-initramfs'],
}
}
|