aboutsummaryrefslogtreecommitdiff
path: root/manifests/base/personal.pp
blob: 14fa34f5ffb67ead49630c154f119d396c230be1 (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
# Personal computer
class nodo::base::personal {
  include nodo::base::physical
  include nodo::utils::personal
  include autossh

  class { 'nodo::subsystem::pam': }
  class { 'nodo::subsystem::xorg': }

  if $::lsbdistcodename == 'squeeze' {
    include nodo::subsystem::gdm
  }
  elsif $::lsbdistcodename == 'wheezy' {
    include nodo::subsystem::gdm3
  }
  else {
    include nodo::subsystem::gdm3::disabled
    include nodo::subsystem::lightdm
  }

  # Media folders and groups
  include nodo::subsystem::media

  # Mountpoint for encrypted home folders
  file { [ '/mnt/crypt/', '/mnt/crypt/home' ]:
    ensure => directory,
  }

  # Misc user data
  file { [ "/var/data/code", "/var/data/crypt", "/var/data/crypt/home", "/var/data/load" ]:
    ensure  => directory,
    mode    => 0755,
    require => File['/var/cache/media'],
  }

  # Development
  file { [ "/var/cache/vagrant", "/var/cache/virtualbox" ]:
    ensure => directory,
    mode   => 0755,
  }
}