51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
from __future__ import print_function
|
|
from argparse import ArgumentParser
|
|
from subprocess import CalledProcessError
|
|
import sys
|
|
|
|
from atticmatic.attic import check_archives, create_archive, prune_archives
|
|
from atticmatic.config import parse_configuration
|
|
|
|
|
|
DEFAULT_CONFIG_FILENAME = '/etc/atticmatic/config'
|
|
DEFAULT_EXCLUDES_FILENAME = '/etc/atticmatic/excludes'
|
|
|
|
|
|
def parse_arguments(*arguments):
|
|
'''
|
|
Parse the given command-line arguments and return them as an ArgumentParser instance.
|
|
'''
|
|
parser = ArgumentParser()
|
|
parser.add_argument(
|
|
'-c', '--config',
|
|
dest='config_filename',
|
|
default=DEFAULT_CONFIG_FILENAME,
|
|
help='Configuration filename',
|
|
)
|
|
parser.add_argument(
|
|
'--excludes',
|
|
dest='excludes_filename',
|
|
default=DEFAULT_EXCLUDES_FILENAME,
|
|
help='Excludes filename',
|
|
)
|
|
parser.add_argument(
|
|
'-v', '--verbose',
|
|
action='store_true',
|
|
help='Display verbose progress information',
|
|
)
|
|
|
|
return parser.parse_args(arguments)
|
|
|
|
|
|
def main():
|
|
try:
|
|
args = parse_arguments(*sys.argv[1:])
|
|
location_config, retention_config = parse_configuration(args.config_filename)
|
|
repository = location_config['repository']
|
|
|
|
create_archive(args.excludes_filename, args.verbose, **location_config)
|
|
prune_archives(args.verbose, repository, retention_config)
|
|
check_archives(args.verbose, repository)
|
|
except (ValueError, IOError, CalledProcessError, RuntimeError) as error:
|
|
print(error, file=sys.stderr)
|
|
sys.exit(1)
|