3
# Copyright 2009-2011 Canonical Ltd. This software is licensed under the
4
# GNU Affero General Public License version 3 (see the file LICENSE).
6
# pylint: disable-msg=C0103,W0403
8
"""Cronscript to prune old and unreferenced OOPS reports from the archive."""
16
from canonical.config import config
17
from canonical.launchpad.scripts.oops import (
18
prune_empty_oops_directories,
21
from lp.services.scripts.base import (
23
LaunchpadScriptFailure,
27
default_lock_filename = '/var/lock/oops-prune.lock'
30
class OOPSPruner(LaunchpadCronScript):
31
def add_my_options(self):
32
self.parser.add_option(
33
'-n', '--dry-run', default=False, action='store_true',
34
dest="dry_run", help="Do a test run. No files are removed."
38
# Default to using the OOPS directory in config file.
40
self.args = [config.error_reports.error_dir]
43
for oops_dir in self.args:
44
if not os.path.isdir(oops_dir):
45
raise LaunchpadScriptFailure(
46
"%s is not a directory" % oops_dir)
48
oops_directories.append(oops_dir)
50
for oops_directory in oops_directories:
51
for oops_path in unwanted_oops_files(oops_directory,
53
self.logger.info("Removing %s", oops_path)
54
if not self.options.dry_run:
57
prune_empty_oops_directories(oops_directory)
60
if __name__ == '__main__':
61
script = OOPSPruner('oops-prune', dbuser='oopsprune')
62
script.lock_and_run(isolation='autocommit')