From 3f613fcc3f6322706ad1b73fa68664ab413ca0c5 Mon Sep 17 00:00:00 2001 From: makkalot Date: Wed, 9 Jul 2008 22:45:40 +0300 Subject: change setup.py according to new log places --- funcweb/setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'funcweb/setup.py') diff --git a/funcweb/setup.py b/funcweb/setup.py index 40c2e00..e4e6cf7 100644 --- a/funcweb/setup.py +++ b/funcweb/setup.py @@ -20,6 +20,9 @@ etcpath = "/etc/httpd/conf.d" self_etcpath = "/etc/funcweb" #the init path for starting and stoping the server ! initpath = "/etc/init.d" +#the log path +logpath = "/var/log/funcweb" +rotpath = "/etc/logrotate.d" #the setup part setup( @@ -88,6 +91,8 @@ setup( data_files = [ (etcpath,['etc/funcweb.conf']), (self_etcpath,['etc/prod.cfg']), - (initpath,['init-scripts/funcwebd']) + (initpath,['init-scripts/funcwebd']), + (logpath,[]), + (rotpath,['etc/funcweb_rotate']) ], ) -- cgit