blob: f4fe3d9b7756193650cfb7d94c62f41f870a35d2 (
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
|
# 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
# This is handled by "hydractl sync-media"
#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", "/var/cache/qemu" ]:
ensure => directory,
mode => '0755',
}
}
|