blob: e01a7134639f1ead60225c3868ba22a88c861773 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
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,
}
}
}
class nodo::desktop::minimal {
$fstab = false
$crypttab = false
$xorg = false
$pam = false
# Apt is disabled as it's not ready for ubuntu
$use_apt = false
# Desktop class
include nodo::desktop
# Backups should happen when the box are likely to be online
backupninja::config { 'desktop':
when => 'everyday at 12:00',
}
}
|