summaryrefslogtreecommitdiffstats
path: root/funcweb
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-07-09 22:45:40 +0300
committermakkalot <makkalot@gmail.com>2008-07-09 22:45:40 +0300
commit3f613fcc3f6322706ad1b73fa68664ab413ca0c5 (patch)
tree668332b845eeab6471f95ebd2d50ea13b14adb78 /funcweb
parentff27a0f54925036fdbc0fadb52f48d3561fb5ec2 (diff)
downloadfunc-3f613fcc3f6322706ad1b73fa68664ab413ca0c5.tar.gz
func-3f613fcc3f6322706ad1b73fa68664ab413ca0c5.tar.xz
func-3f613fcc3f6322706ad1b73fa68664ab413ca0c5.zip
change setup.py according to new log places
Diffstat (limited to 'funcweb')
-rw-r--r--funcweb/setup.py7
1 files changed, 6 insertions, 1 deletions
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'])
],
)