From 1ee8c28bf281dab474c3d6d53f9b4eb108d128ca Mon Sep 17 00:00:00 2001 From: Seblu Date: Wed, 13 Jul 2011 15:04:31 +0200 Subject: [PATCH] setup install config files --- samples/repository.conf | 20 ++++++++++---------- setup.py | 6 +++++- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/samples/repository.conf b/samples/repository.conf index 65da67a..d7c4460 100644 --- a/samples/repository.conf +++ b/samples/repository.conf @@ -1,17 +1,17 @@ # repository configuration # local repository -[local] -path = /home/seblu/pub/is -fmod = 644 -dmod = 755 -uid = seblu -gid = sebgp +#[local] +#path = /home/seblu/pub/is +#fmod = 644 +#dmod = 755 +#uid = seblu +#gid = sebgp # localhost testing repository -[http] -path = http://127.0.0.1/is +#[http] +#path = http://127.0.0.1/is # smartjog official installsystems repository -[smartjog] -path = http://installsystems.boot.wan/is +#[smartjog] +#path = http://installsystems.boot.wan/is diff --git a/setup.py b/setup.py index 65b2feb..ed4e75c 100644 --- a/setup.py +++ b/setup.py @@ -14,9 +14,13 @@ setup( long_description=ldesc, author='Sebastien Luttringer', author_email='sebastien.luttringer@smartjog.com', - license='GPL2', + license='GPL2', packages=[ 'installsystems' ], scripts=[ 'bin/is' ], + data_files=( + ('/etc/installsystems/', ('samples/repository.conf', + 'samples/installsystems.conf')), + ), classifiers=[ 'Operating System :: Unix', 'Programming Language :: Python', -- GitLab