Simple, configuration-driven backup software for servers and workstations https://torsion.org/borgmatic/
Go to file
Dan Helfman ed0127df91 #20: Fix for traceback when remote_path option is missing. 2016-06-13 08:53:41 -07:00
borgmatic #20: Fix for traceback when remote_path option is missing. 2016-06-13 08:53:41 -07:00
sample #19: Support for Borg's --remote-path option to use an alternate Borg executable. 2016-06-10 13:31:37 -07:00
.gitignore Added .gitignore file. 2016-01-30 20:24:29 +01:00
.hgignore Adding build to hgignore. 2015-08-09 11:04:57 -07:00
.hgtags Added tag 1.0.1 for changeset de2d7721cdec 2016-06-10 13:34:23 -07:00
AUTHORS Added support for --one-file-system for Borg. 2016-02-13 10:43:31 -08:00
LICENSE Adding GPL v3 license. 2014-11-18 18:22:51 -08:00
NEWS #20: Fix for traceback when remote_path option is missing. 2016-06-13 08:53:41 -07:00
README.md Restricting issues list to open issues. 2016-06-12 22:40:04 -07:00
setup.cfg Making a univeral wheel that supports both Python 2 and 3. 2016-06-10 12:34:49 -07:00
setup.py #20: Fix for traceback when remote_path option is missing. 2016-06-13 08:53:41 -07:00
test_requirements.txt Switching from the no-longer-maintained nose test runner to pytest. 2016-04-10 15:59:36 -07:00
tox.ini Switching from the no-longer-maintained nose test runner to pytest. 2016-04-10 15:59:36 -07:00

README.md

title: Borgmatic

Overview

borgmatic (formerly atticmatic) is a simple Python wrapper script for the Borg backup software that initiates a backup, prunes any old backups according to a retention policy, and validates backups for consistency. 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.
# Globs are expanded.
source_directories: /home /etc /var/log/syslog*

# Path to local or remote backup repository.
repository: user@backupserver:sourcehostname.borg

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

[consistency]
# Consistency checks to run, or "disabled" to prevent checks.
checks: repository archives

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

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

Setup

To get up and running, follow the Borg Quick Start to create a repository on a local or remote host. Note that if you plan to run borgmatic on a schedule with cron, and you encrypt your Borg repository with a passphrase instead of a key file, you'll need to set the borgmatic encryption_passphrase configuration variable. See the repository encryption section of the Quick Start 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 borgmatic, run the following command to download and install it:

sudo pip install --upgrade borgmatic

Then, copy the following configuration files:

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

Lastly, modify the /etc files with your desired configuration.

Upgrading from atticmatic

You can ignore this section if you're not an atticmatic user (the former name of borgmatic).

borgmatic only supports Borg now and no longer supports Attic. So if you're an Attic user, consider switching to Borg. See the Borg upgrade command for more information. Then, follow the instructions above about setting up your borgmatic configuration files.

If you were already using Borg with atticmatic, then you can easily upgrade from atticmatic to borgmatic. Simply run the following commands:

sudo pip uninstall atticmatic
sudo pip install borgmatic

That's it! borgmatic will continue using your /etc/borgmatic configuration files.

Usage

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

borgmatic

This will also prune any old backups as per the configured retention policy, and check backups for consistency problems due to things like file damage.

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 verbosity option:

borgmatic --verbosity 1

Or, for even more progress spew:

borgmatic --verbosity 2

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

borgmatic --help

Running tests

First install tox, which is used for setting up testing environments:

pip install tox

Then, to actually run tests, run:

tox

Troubleshooting

Broken pipe with remote repository

When running borgmatic on a large remote repository, you may receive errors like the following, particularly while "borg check" is validating backups for consistency:

Write failed: Broken pipe
borg: Error: Connection closed by remote host

This error can be caused by an ssh timeout, which you can rectify by adding the following to the ~/.ssh/config file on the client:

Host *
    ServerAliveInterval 120

This should make the client keep the connection alive while validating backups.

Issues and feedback

Got an issue or an idea for a feature enhancement? Check out the borgmatic issue tracker. In order to create a new issue or comment on an issue, you'll need to login first.

Other questions or comments? Contact mailto:witten@torsion.org.