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

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