aboutsummaryrefslogtreecommitdiff
path: root/manifests/desktop.pp
blob: 0a58830f6d0db3bd2a988ba97c845c2d233bda20 (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
class nodo::desktop inherits nodo::personal {
  include utils::desktop

  # fstab
  if $fstab != false {
    class { 'fstab':
      type => 'desktop',
    }
  }

  # crypttab
  if $crypttab != false {
    class { 'crypttab':
      type => 'desktop',
    }
  }
}

class nodo::desktop::minimal {
  $fstab    = false
  $crypttab = false
  $xorg     = false
  $pam      = false

  # Backups should happen when the box is likely to be online
  $backup_when = 'everyday at 12:00'

  # Desktop class
  include nodo::desktop
}

class nodo::desktop::webdev inherits nodo::desktop {
  include websites::dev
  include database
  include utils::web
}