aboutsummaryrefslogtreecommitdiff
path: root/manifests/personal.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-01-19 11:17:48 -0200
committerSilvio Rhatto <rhatto@riseup.net>2012-01-19 11:17:48 -0200
commitf12b812397ca86497a8da0cda37184dda20b859a (patch)
tree14b92afcea24ca584bf4d4fd1a96bf6b2de75421 /manifests/personal.pp
parentb75fafbb213f26e8defbee1cb0f5cdb651cad7b6 (diff)
downloadpuppet-nodo-f12b812397ca86497a8da0cda37184dda20b859a.tar.gz
puppet-nodo-f12b812397ca86497a8da0cda37184dda20b859a.tar.bz2
Media and torrent cache
Diffstat (limited to 'manifests/personal.pp')
-rw-r--r--manifests/personal.pp14
1 files changed, 13 insertions, 1 deletions
diff --git a/manifests/personal.pp b/manifests/personal.pp
index b82b9e4..239e8d2 100644
--- a/manifests/personal.pp
+++ b/manifests/personal.pp
@@ -18,9 +18,21 @@ class nodo::personal {
default: { }
}
- # misc user data
+ # Misc user data
file { "/var/data":
ensure => directory,
mode => 0755,
}
+
+ # Media cache
+ file { "/var/cache/media":
+ ensure => directory,
+ mode => 0755,
+ }
+
+ # Torrent cache
+ file { "/var/cache/torrent":
+ ensure => directory,
+ mode => 0755,
+ }
}