Commit 9278fcc0 authored by Łukasz Nowak's avatar Łukasz Nowak

Move rotated logs to backup directory.

parent 232ac37a
...@@ -55,7 +55,7 @@ class Recipe(BaseSlapRecipe): ...@@ -55,7 +55,7 @@ class Recipe(BaseSlapRecipe):
self.requirements, self.ws = self.egg.working_set([__name__]) self.requirements, self.ws = self.egg.working_set([__name__])
# self.cron_d is a directory, where cron jobs can be registered # self.cron_d is a directory, where cron jobs can be registered
self.cron_d = self.installCrond() self.cron_d = self.installCrond()
self.logrotate_d = self.installLogrotate() self.logrotate_d, self.logrotate_backup = self.installLogrotate()
self.killpidfromfile = zc.buildout.easy_install.scripts( self.killpidfromfile = zc.buildout.easy_install.scripts(
[('killpidfromfile', __name__ + '.killpidfromfile', [('killpidfromfile', __name__ + '.killpidfromfile',
'killpidfromfile')], self.ws, sys.executable, self.bin_directory)[0] 'killpidfromfile')], self.ws, sys.executable, self.bin_directory)[0]
...@@ -134,6 +134,7 @@ class Recipe(BaseSlapRecipe): ...@@ -134,6 +134,7 @@ class Recipe(BaseSlapRecipe):
logrotate_d = os.path.abspath(os.path.join(self.etc_directory, logrotate_d = os.path.abspath(os.path.join(self.etc_directory,
'logrotate.d')) 'logrotate.d'))
self._createDirectory(logrotate_d) self._createDirectory(logrotate_d)
logrotate_backup = self.createBackupDirectory('logrotate')
logrotate_conf = self.createConfigurationFile("logrotate.conf", logrotate_conf = self.createConfigurationFile("logrotate.conf",
"include %s" % logrotate_d) "include %s" % logrotate_d)
logrotate_cron = os.path.join(self.cron_d, 'logrotate') logrotate_cron = os.path.join(self.cron_d, 'logrotate')
...@@ -141,7 +142,7 @@ class Recipe(BaseSlapRecipe): ...@@ -141,7 +142,7 @@ class Recipe(BaseSlapRecipe):
open(logrotate_cron, 'w').write('0 0 * * * %s -s %s %s' % open(logrotate_cron, 'w').write('0 0 * * * %s -s %s %s' %
(self.options['logrotate_binary'], state_file, logrotate_conf)) (self.options['logrotate_binary'], state_file, logrotate_conf))
self.path_list.extend([logrotate_d, logrotate_conf, logrotate_cron]) self.path_list.extend([logrotate_d, logrotate_conf, logrotate_cron])
return logrotate_d return logrotate_d, logrotate_backup
def registerLogRotation(self, name, log_file_list, postrotate_script): def registerLogRotation(self, name, log_file_list, postrotate_script):
"""Register new log rotation requirement""" """Register new log rotation requirement"""
...@@ -149,7 +150,7 @@ class Recipe(BaseSlapRecipe): ...@@ -149,7 +150,7 @@ class Recipe(BaseSlapRecipe):
self.substituteTemplate(self.getTemplateFilename( self.substituteTemplate(self.getTemplateFilename(
'logrotate_entry.in'), 'logrotate_entry.in'),
dict(file_list=' '.join(['"'+q+'"' for q in log_file_list]), dict(file_list=' '.join(['"'+q+'"' for q in log_file_list]),
postrotate=postrotate_script))) postrotate=postrotate_script, olddir=self.logrotate_backup)))
def linkBinary(self): def linkBinary(self):
"""Links binaries to instance's bin directory for easier exposal""" """Links binaries to instance's bin directory for easier exposal"""
......
...@@ -9,4 +9,5 @@ ...@@ -9,4 +9,5 @@
postrotate postrotate
%(postrotate)s %(postrotate)s
endscript endscript
olddir %(olddir)s
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment