12 lines
362 B
Python
12 lines
362 B
Python
from functools import partial
|
|
|
|
from atticmatic.backends import shared
|
|
|
|
# An atticmatic backend that supports Attic for actually handling backups.
|
|
|
|
COMMAND = 'attic'
|
|
|
|
|
|
create_archive = partial(shared.create_archive, command=COMMAND)
|
|
prune_archives = partial(shared.prune_archives, command=COMMAND)
|
|
check_archives = partial(shared.check_archives, command=COMMAND)
|