From: Silvio Rhatto Date: Mon, 18 Jun 2012 15:15:27 +0000 (-0300) Subject: Managing /var/lib/tor/hidden at nodo::tor X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=a2d57d2bb29479784cde478bdb8955519b566cef;p=puppet-nodo.git Managing /var/lib/tor/hidden at nodo::tor --- diff --git a/manifests/tor.pp b/manifests/tor.pp index 11ba480..007a0ed 100644 --- a/manifests/tor.pp +++ b/manifests/tor.pp @@ -1,4 +1,11 @@ class nodo::tor inherits nodo::vserver { include tor::daemon include utils::tor + + file { '/var/lib/tor/hidden': + ensure => present, + owner => 'debian-tor', + group => 'debian-tor', + mode => 0700, + } }