aboutsummaryrefslogtreecommitdiff
path: root/manifests/laptop.pp
blob: 1ed77b7d3379f6eeb325d74526f463d0fa1783e3 (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
class nodo::laptop inherits nodo::personal {
  include nodo::utils::laptop
  include nodo::subsystem::dhclient
  include firewall::wifi
  include firewall::openvpn
  include firewall::ppp

  class { 'nodo::subsystem::fstab':
    type => 'laptop',
  }

  $hibernate = hiera('nodo::laptop::hibernate', false)

  class { 'nodo::subsystem::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,
    },
  }
}