aboutsummaryrefslogtreecommitdiff
path: root/manifests/personal.pp
blob: 54685a625386f387edd08eaca70c3061a4e5c320 (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
42
43
44
45
# personal computer
class nodo::personal {

  case $use_nagios {
    '': { $use_nagios = false }
  }

  include nodo::physical
  include utils::personal
  include pam
  include xorg

  # Currently tor management just works for debian
  case $operatingsystem {
    debian: { 
      include tor::polipo
    }
    default: { }
  }

  # Misc user data
  file { "/var/data":
    ensure => directory,
    mode   => 0755,
  }

  # Media cache
  file { "/var/cache/media":
    ensure => directory,
    mode   => 0755,
  }

  # Old torrent cache
  file { "/var/cache/torrent":
    ensure => directory,
    mode   => 0755,
    ensure => absent,
  }

  # Torrent cache
  file { "/var/cache/torrents":
    ensure => directory,
    mode   => 0755,
  }
}