Automatic restic Backups using Native OS Task Schedulers
formerly named restic-systemd-automatic-backup
including these top contributors:
Intro
restic is a command-line tool for making backups, the right way. Check the official website for a feature explanation. As a storage backend, I recommend Backblaze B2 as restic works well with it, and it is (at the time of writing) very affordable for the hobbyist hacker! (anecdotal: I pay for my full-systems backups each month typically < 1 USD).
Unfortunately restic does not come pre-configured with a way to run automated backups, say every day. However it's possible to set this up yourself using built-in tools in your OS and some wrappers. For Linux with systemd, it's convenient to use systemd timers. For macOS systems, we can use built-in LaunchAgents. For Windows we can use ScheduledTasks. Any OS having something cron-like will also work!
Here follows a step-by step tutorial on how to set it up, with my sample script and configurations that you can modify to suit your needs.
Note, you can use any restic's supported storage backends. The setup should be similar but you will have to use other configuration variables to match your backend of choice.
Project Scope
The scope for this is not to be a full-fledged super solution that solves all the problems and all possible setups. The aim is to be a hackable code base for you to start sewing up the perfect backup solution that fits your requirements!
Nevertheless the project should work out of the box, be minimal but still open the doors for configuration and extensions by users.
To use a different storage backend than B2, you should only need to tweak a few settings variables in the backup profile as well as some restic arguments inside restic_backup.sh.
Notes
Tip: Navigate this document easily from the Section icon in the top left corner.
☝Note: in the command listing in this document, $ means a user shell and # means a root shell (or use sudo).
Requirements
restic >=v0.9.6
bash >=v4.0.0
(recommended) GNU make if you want an automated install
Arch: part of the base-devel meta package, Debian/Ubuntu: part of the build-essential meta package, macOS: use the pre-installed or a more recent with Homebrew
Setup
Depending on your system, the setup will look different. Choose one of:
Cron - for any system having a cron daemon. Tested on FreeBSD and macOS.
Setup Linux Systemd
☝Note The Linux setup here will assume an installation to /.
Many Linux distributions nowadays use Systemd, which features good support for running services and scheduled jobs. If your distribution is no on Systemd, check out the cron setup instead.
Initialize the remote repo.
Source the profile to make all needed configuration available to restic(1). All commands after this assumes the profile is sourced in the current shell.
(optional) Define multiple profiles: just make a copy of the default.env.sh and use the defined profile name in place of default to run backups or enable timers. Notice that the value after @ works as a parameter.
Launchd is the modern built-in service scheduler in macOS. It has support for running services as root (Daemon) or as a normal user (Agent). Here we set up a LaunchAgent to be run as your normal user for starting regular backups.
Initialize the remote repo.
Source the profile to make all needed configuration available to restic(1). All commands after this assumes the profile is sourced in the current shell.
If you updated the .plist file, you need to issue the bootout followed by bootrstrap and enable sub-commands of launchctl. This will guarantee that the file is properly reloaded.
Setup Windows ScheduledTask
Windows comes with a built-in task scheduler called ScheduledTask. The frontend app is "Task Scheduler" (taskschd.msc) and we can use PowerShell commands to install a new scheduled task.
I describe here one of may ways you can get restic and this backup script working on Windows. Here I chose to work with scoop and git-bash.
Initialize the remote repo.
Source the profile to make all needed configuration available to restic(1). All commands after this assumes the profile is sourced in the current shell.
With taskschd.msc you can easily start, stop, delete and configure the scheduled tasks to your liking:
Setup Cron
☝Note There are many different cron implementations out there and they all work slightly different.
Any system that has a cron-like system can easily setup restic backups as well. However if you system supports any of the previous setups, those are recommended over cron as they provide more features and reliability for your backups.
This assumes that your cron supports dropping files into /etc/cron.d/. If that is not the case, simply copy the relevant contents of the installed /etc/cron.d/restic in to your /etc/crontab.
Initialize the remote repo.
Source the profile to make all needed configuration available to restic(1). All commands after this assumes the profile is sourced in the current shell.
# source /etc/restic/default.env.sh # restic init
Make the first backup
# restic_backup.sh
Verify the backup
# restic snapshots
Configure how often backups should be done by directly editing /etc/cron.d/restic (or /etc/crontab).
This is a more detailed explanation than the TL;DR sections above that will give you more understanding in the setup. This section is more general, but uses Linux + Systemd as the example setup.
Why? The OS specific TL;DR setups above all use the Makefile or a package manager to install these files. The placeholder string $INSTALL_PREFIX is in the source files for portability reasons, so that the Makefile can support all different operating systems. make users can set a different $PREFIX when installing like PREFIX=/usr/local make install-systemd.
In this detailed manual setup we will copy all files manually to /etcand /bin. Thus we need to remove the placeholder string $INSTALL_PREFIX in the source files as a first step.
Limit scope of the new id and key pair to only the above created bucket.
First, see this official Backblaze tutorial on restic, and follow the instructions ("Create Backblaze account with B2 enabled") there on how to create a new B2 bucket. In general, you'd want a private bucket, without B2 encryption (restic does the encryption client side for us) and without the object lock feature.
For restic to be able to connect to your bucket, you want to in the B2 settings create a pair of keyID and applicationKey. It's a good idea to create a separate pair of ID and Key with for each bucket that you will use, with limited read&write access to only that bucket.
2. Configure B2 Credentials Locally
Put these files in /etc/restic/:
_global.env.sh: Fill this file out with your global settings including B2 keyID & applicationKey.
default.env.sh: This is the default profile. Fill this out with bucket name, backup paths and retention policy. This file sources _global.env.sh and is thus self-contained and can be sourced in the shell when you want to issue some manual restic commands. For example:
$ source /etc/restic/default.env.sh
$ restic snapshots # You don't have to supply all parameters like --repo, as they are now in your environment!
pw.txt: This file should contain the restic password (single line) used to encrypt the repository. This is a new password what soon will be used when initializing the new repository. It should be unique to this restic backup repository and is needed for restoring from it. Don't re-use your B2 login password, this should be different. For example you can generate a 128 character password (must all be on one line) with:
restic_backup.sh: A script that defines how to run the backup. The intention is that you should not need to edit this script yourself, but be able to control everything from the *.env.sh profiles.
Restic support exclude files. They list file pattern paths to exclude from you backups, files that just occupy storage space, backup-time, network and money. restic_backup.sh allows for a few different exclude files.
/etc/restic/backup_exclude.txt - global exclude list. You can use only this one if your setup is easy. This is set in _global.env.sh. If you need a different file for another profile, you can override the envvar RESTIC_BACKUP_EXCLUDE_FILE in this profile.
.backup_exclude.txt per backup path. If you have e.g. an USB disk mounted at /mnt/media and this path is included in the $RESTIC_BACKUP_PATHS, you can place a file /mnt/media/.backup_exclude.txt and it will automatically picked up. The nice thing about this is that the backup paths are self-contained in terms of what they shoud exclude!
5. Make first backup
Now see if the backup itself works, by running as root
As the default.env.sh is already sourced in your root shell, you can now just list the snapshost
# restic snapshots
Alternatively you can mount the restic snapshots to a directory set /mnt/restic
# restic mount /mnt/restic
# ls /mnt/restic
7. Backup automatically
All OS setups differs in what task scheduler they use. As a demonstration, let's look at how we can do this with systemd under Linux here.
Put these files in /etc/systemd/system (note that the Makefile installs as package to /usr/lib/systemd/system)
[email protected]: A service that calls the backup script with the specified profile. The profile is specified
by the value after @ when running it (see below).
[email protected]: A timer that starts the former backup every day (same thing about profile here).
If needed, edit this file to configure how often back up should be made. See the OnCalendar key in the file.
请发表评论