diff options
| author | makkalot <makkalot@gmail.com> | 2008-07-09 22:45:40 +0300 |
|---|---|---|
| committer | makkalot <makkalot@gmail.com> | 2008-07-09 22:45:40 +0300 |
| commit | 3f613fcc3f6322706ad1b73fa68664ab413ca0c5 (patch) | |
| tree | 668332b845eeab6471f95ebd2d50ea13b14adb78 /funcweb | |
| parent | ff27a0f54925036fdbc0fadb52f48d3561fb5ec2 (diff) | |
| download | func-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.py | 7 |
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']) ], ) |
