blob: a2420f9c5c3b3a62b2da93a21f94fd50ad6b5923 (
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
|
class nodo::laptop inherits nodo::personal {
include utils::laptop
include firewall::wifi
include firewall::openvpn
include firewall::ppp
include dhclient
class { 'fstab':
type => 'laptop',
}
$hibernate = hiera('nodo::laptop::hibernate', false)
class { 'crypttab':
type => $hibernate ? {
false => "laptop",
default => "laptop.hibernate",
},
}
# Hibernation
file { "/etc/initramfs-tools/conf.d/resume":
owner => "root",
group => "root",
mode => 0644,
content => "RESUME=/dev/mapper/cswap\n",
notify => Exec['update-initramfs'],
ensure => $hibernate ? {
false => absent,
default => present,
},
}
}
class nodo::laptop::webdev inherits nodo::laptop {
include websites::dev
include database
include utils::web
}
|