Simple, configuration-driven backup software for servers and workstations

Dan Helfman f5abe05ce9 Instructions to make cron file executable. 8 năm trước cách đây
borgmatic 6af53d1163 Fixing gets on config group names. 8 năm trước cách đây
sample ff28be7724 Documentation updates based on the new YAML configuration. 8 năm trước cách đây
static 5bd1cc5580 #18: Fix for README mention of sample files not included in package. Also, added logo. 9 năm trước cách đây
.gitignore 978096b402 Added .gitignore file. 9 năm trước cách đây
.hgignore 1bcb2a8be4 More test coverage, and simplification of config generation. 8 năm trước cách đây
.hgtags f6d2e983d9 Added tag 1.0.3 for changeset 32c6341dda9f 9 năm trước cách đây
AUTHORS 049f9c8853 Added support for --one-file-system for Borg. 9 năm trước cách đây
LICENSE 42d9e2bfd8 Adding GPL v3 license. 10 năm trước cách đây
MANIFEST.in 6e85940d63 Basic YAML configuration file parsing. 8 năm trước cách đây
NEWS 0691cda46f Mention generate-borgmatic-config in changelog. 8 năm trước cách đây
README.md f5abe05ce9 Instructions to make cron file executable. 8 năm trước cách đây
setup.cfg e1e5db22f8 Making a univeral wheel that supports both Python 2 and 3. 9 năm trước cách đây
setup.py dc9b075d5a Rename convert-borgmatic-config to upgrade-borgmatic-config. 8 năm trước cách đây
test_requirements.txt 745de200df Basic YAML generating / validating / converting to. 8 năm trước cách đây
tox.ini e50fd04750 Adding test coverage report. Making tests a little less brittle. 8 năm trước cách đây

README.md

title: borgmatic

borgmatic logo

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:
    # List of source directories to backup. Globs are expanded.
    source_directories:
        - /home
        - /etc
        - /var/log/syslog*

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

    # Any paths matching these patterns are excluded from backups.
    exclude_patterns:
        - /home/*/.cache

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

consistency:
    # List of consistency checks to run: "repository", "archives", or both.
    checks:
        - repository
        - archives

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

Installation

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

Make sure you're using Python 3, as borgmatic does not support Python 2. (You may have to use "pip3" or similar instead of "pip".)

Then, generate a sample configuration file:

sudo generate-borgmatic-config

This generates a sample configuration file at /etc/borgmatic/config.yaml (by default). You should edit the file to suit your needs, as the values are just representative. All fields are optional except where indicated, so feel free to remove anything you don't need.

Upgrading

In general, all you should need to do to upgrade borgmatic is run the following:

sudo pip install --upgrade borgmatic

(You may have to use "pip3" or similar instead of "pip", so Python 3 gets used.)

However, see below about special cases.

Upgrading from borgmatic 1.0.x

borgmatic changed its configuration file format in version 1.1.0 from INI-style to YAML. This better supports validation, and has a more natural way to express lists of values. To upgrade your existing configuration, first upgrade to the new version of borgmatic:

As of version 1.1.0, borgmatic no longer supports Python 2. If you were already running borgmatic with Python 3, then you can simply upgrade borgmatic in-place:

sudo pip install --upgrade borgmatic

But if you were running borgmatic with Python 2, uninstall and reinstall instead:

sudo pip uninstall borgmatic
sudo pip3 install borgmatic

The pip binary names for different versions of Python can differ, so the above commands may need some tweaking to work on your machine.

Once borgmatic is upgraded, run:

sudo upgrade-borgmatic-config

That will generate a new YAML configuration file at /etc/borgmatic/config.yaml (by default) using the values from both your existing configuration and excludes files. The new version of borgmatic will consume the YAML configuration file instead of the old one.

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

Autopilot

If you want to run borgmatic automatically, say once a day, the you can configure a job runner to invoke it periodically.

cron

If you're using cron, download the sample cron file. Then, from the directory where you downloaded it:

sudo mv borgmatic /etc/cron.d/borgmatic
sudo chmod +x /etc/cron.d/borgmatic

You can modify the cron file if you'd like to run borgmatic more or less frequently.

systemd

If you're using systemd instead of cron to run jobs, download the sample systemd service file and the sample systemd timer file. Then, from the directory where you downloaded them:

sudo mv borgmatic.service borgmatic.timer /etc/systemd/system/
sudo systemctl enable borgmatic.timer
sudo systemctl start borgmatic.timer

Feel free to modify the timer file based on how frequently you'd like borgmatic to run.

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.

libyaml compilation errors

borgmatic depends on a Python YAML library (ruamel.yaml) that will optionally use a C YAML library (libyaml) if present. But if it's not installed, then when installing or upgrading borgmatic, you may see errors about compiling the YAML library. If so, not to worry. borgmatic should install and function correctly even without the C YAML library. And borgmatic won't be any faster with the C library present, so you don't need to go out of your way to install it.

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 witten@torsion.org.