summaryrefslogtreecommitdiffstats
path: root/funcweb/setup.py
diff options
context:
space:
mode:
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'])
],
)