From: Silvio Rhatto Date: Thu, 19 Jan 2012 13:17:48 +0000 (-0200) Subject: Media and torrent cache X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=f12b812397ca86497a8da0cda37184dda20b859a;p=puppet-nodo.git Media and torrent cache --- 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, + } }