1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#!/usr/bin/python -S
#
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=C0103,W0403
"""Cronscript to prune old and unreferenced OOPS reports from the archive."""
__metaclass__ = type
import _pythonpath
import os
from canonical.config import config
from canonical.database.sqlbase import ISOLATION_LEVEL_AUTOCOMMIT
from lp.services.scripts.base import (
LaunchpadCronScript, LaunchpadScriptFailure)
from canonical.launchpad.scripts.oops import (
unwanted_oops_files, prune_empty_oops_directories)
default_lock_filename = '/var/lock/oops-prune.lock'
class OOPSPruner(LaunchpadCronScript):
def add_my_options(self):
self.parser.add_option(
'-n', '--dry-run', default=False, action='store_true',
dest="dry_run", help="Do a test run. No files are removed."
)
def main(self):
# Default to using the OOPS directory in config file.
if not self.args:
self.args = [config.error_reports.error_dir]
oops_directories = []
for oops_dir in self.args:
if not os.path.isdir(oops_dir):
raise LaunchpadScriptFailure(
"%s is not a directory" % oops_dir)
oops_directories.append(oops_dir)
for oops_directory in oops_directories:
for oops_path in unwanted_oops_files(oops_directory,
40, self.logger):
self.logger.info("Removing %s", oops_path)
if not self.options.dry_run:
os.unlink(oops_path)
prune_empty_oops_directories(oops_directory)
if __name__ == '__main__':
script = OOPSPruner('oops-prune', dbuser='oopsprune')
script.lock_and_run(isolation=ISOLATION_LEVEL_AUTOCOMMIT)
|