Simple, configuration-driven backup software for servers and workstations
Go to file
Dan Helfman de40570db4 Integration tests for argument parsing. 2014-12-20 11:37:25 -08:00
atticmatic Integration tests for argument parsing. 2014-12-20 11:37:25 -08:00
sample Configuration support for additional attic prune flags: keep_within, keep_hourly, keep_yearly, and prefix. 2014-12-06 18:35:20 -08:00
.hgignore Configuration support for additional attic prune flags: keep_within, keep_hourly, keep_yearly, and prefix. 2014-12-06 18:35:20 -08:00
.hgtags Added tag 0.0.2 for changeset 467d3a3ce918 2014-12-06 18:35:28 -08:00
AUTHORS Adding authors/contributors file. 2014-12-01 20:30:07 -08:00
LICENSE Adding GPL v3 license. 2014-11-18 18:22:51 -08:00
NEWS Integration tests for argument parsing. 2014-12-20 11:37:25 -08:00
README.md Adding a note about repository encryption. 2014-12-20 10:56:03 -08:00
setup.py Configuration support for additional attic prune flags: keep_within, keep_hourly, keep_yearly, and prefix. 2014-12-06 18:35:20 -08:00

README.md

title: Atticmatic date: save_as: atticmatic/index.html

Overview

atticmatic is a simple Python wrapper script for the Attic backup software that initiates a backup and prunes any old backups according to a retention policy. The script supports specifying your settings in a declarative configuration file rather than having to put them all on the command-line, and handles common errors.

Here's an example config file:

[location]
# Space-separated list of source directories to backup.
source_directories: /home /etc

# Path to local or remote Attic repository.
repository: user@backupserver:sourcehostname.attic

[retention]
# Retention policy for how many backups to keep in each category.
keep_daily: 7
keep_weekly: 4
keep_monthly: 6

Additionally, exclude patterns can be specified in a separate excludes config file, one pattern per line.

atticmatic is hosted at https://torsion.org/atticmatic with source code available. It's also mirrored on GitHub and BitBucket for convenience.

Setup

To get up and running with Attic, follow the Attic Quick Start guide to create an Attic repository on a local or remote host. Note that if you plan to run atticmatic on a schedule with cron, and you encrypt your attic repository with a passphrase instead of a key file, you'll need to set the ATTIC_PASSPHRASE environment variable. See attic's repository encryption documentation for more info.

If the repository is on a remote host, make sure that your local root user has key-based ssh access to the desired user account on the remote host.

To install atticmatic, run the following command to download and install it:

sudo pip install hg+https://torsion.org/hg/atticmatic

Then copy the following configuration files:

sudo cp sample/atticmatic.cron /etc/cron.d/atticmatic
sudo mkdir /etc/atticmatic/
sudo cp sample/config sample/excludes /etc/atticmatic/

Lastly, modify those files with your desired configuration.

Usage

You can run atticmatic and start a backup simply by invoking it without arguments:

atticmatic

This will also prune any old backups as per the configured retention policy. By default, the backup will proceed silently except in the case of errors. But if you'd like to to get additional information about the progress of the backup as it proceeds, use the verbose option instead:

atticmattic --verbose

If you'd like to see the available command-line arguments, view the help:

atticmattic --help

Running tests

To install test-specific dependencies, first run:

sudo python setup.py test

To actually run tests, run:

nosetests --detailed-errors

Feedback

Questions? Comments? Got a patch? Contact mailto:witten@torsion.org.