summaryrefslogtreecommitdiffstats
path: root/funcweb/setup.py
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-07-28 14:18:01 +0300
committermakkalot <makkalot@gmail.com>2008-07-28 14:18:01 +0300
commit8746ffb25fc2c138e457489d38bce1a8cd92835c (patch)
tree370514f3f40405c34ce5ce24d9ce17dddfa426a3 /funcweb/setup.py
parent6e47882e0dcb86e8b360dc17ac2541fe6875e55d (diff)
parent391a052ccedb1195290aceeea500fc6aea86afdb (diff)
merge from new_layout to master
Diffstat (limited to 'funcweb/setup.py')
-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'])
],
)