From: Thierry Parmentelat Date: Fri, 7 Feb 2014 14:17:53 +0000 (+0100) Subject: create required directories X-Git-Tag: myslice-0.3-0~2^2~8 X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=commitdiff_plain;h=cee22e9ecd10953ac9e5fa69bdfee261157697dc;hp=8a09c0920e21c050199637bd3a7295a7865a264d create required directories --- 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', []), ])