From abdd80d556fb4608a5db2f68259a867c22c0b90a Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Tue, 27 Aug 2013 11:52:51 -0400 Subject: disable setup.py from installing initscript so the packaging can handle it --- server/setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server/setup.py b/server/setup.py index 7dcd127c..762e53a6 100644 --- a/server/setup.py +++ b/server/setup.py @@ -33,7 +33,8 @@ if os.environ.get('VIRTUAL_ENV', None): data_files = None else: # XXX this should go only for linux/mac - data_files = [("/etc/init.d/", ["pkg/soledad"])] + # disabled on debian so the packaging can install it + #data_files = [("/etc/init.d/", ["pkg/soledad"])] trove_classifiers = ( @@ -70,5 +71,6 @@ setup( packages=find_packages('src'), package_dir={'': 'src'}, install_requires=utils.parse_requirements(), - data_files=data_files, + # disabled on debian so the packaging can handle it + #data_files=data_files, ) -- cgit v1.2.3