From cee22e9ecd10953ac9e5fa69bdfee261157697dc Mon Sep 17 00:00:00 2001
From: Thierry Parmentelat <thierry.parmentelat@inria.fr>
Date: Fri, 7 Feb 2014 15:17:53 +0100
Subject: [PATCH] create required directories

---
 setup.py | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/setup.py b/setup.py
index e7ab6a5b..5d767922 100644
--- a/setup.py
+++ b/setup.py
@@ -16,10 +16,12 @@ setup(packages = packages,
       # xxx somehow this does not seem to show up in debian packaging
       scripts = [ 'apache/unfold-init-ssl.sh' ],
       data_files = [ 
-        ( '/usr/share/unfold/static/js', glob ('static/js/*')),
-        ( '/usr/share/unfold/static/css', glob ('static/css/*')),
-        ( '/usr/share/unfold/static/img', glob ('static/img/*')),
-        ( '/usr/share/unfold/static/fonts', glob ('static/fonts/*')),
-        ( '/usr/share/unfold/templates', glob ('templates/*')),
-        ( 'apache', [ 'apache/unfold.conf', 'apache/unfold.wsgi' ]),
+          ( '/usr/share/unfold/static/js', glob ('static/js/*')),
+          ( '/usr/share/unfold/static/css', glob ('static/css/*')),
+          ( '/usr/share/unfold/static/img', glob ('static/img/*')),
+          ( '/usr/share/unfold/static/fonts', glob ('static/fonts/*')),
+          ( '/usr/share/unfold/templates', glob ('templates/*')),
+          ( 'apache', [ 'apache/unfold.conf', 'apache/unfold.wsgi' ]),
+          ( '/etc/unfold/trusted_roots', []),
+          ( '/var/unfold', []),
         ])
-- 
2.47.0