blob: ddf740f4bd30113207133303315b979af5934c9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
class nodo::desktop inherits nodo::personal {
include utils::desktop
# fstab
if $fstab != false {
file { "/etc/fstab":
source => "puppet://$server/modules/nodo/etc/fstab/desktop",
owner => "root",
group => "root",
mode => 0644,
ensure => present,
}
}
# crypttab
if $crypttab != false {
file { "/etc/crypttab":
source => "puppet://$server/modules/nodo/etc/crypttab/desktop",
owner => "root",
group => "root",
mode => 0644,
ensure => present,
}
}
}
|