Add installation hint

This commit is contained in:
Christian Wolf 2024-05-09 15:33:11 +02:00
parent ee929804c0
commit 9229a0cec7

View File

@ -21,3 +21,12 @@ The scripts to do the actual offsite backup cloning is up to the user.
There should be a file (defaults to `repos` sibling file, see `repos.dist`) that defines these scripts and the order of their invocation.
Note, this is no shell script that is called but line by line interpreted.
You can also give another file using the `--repos` CLI argument.
## Registering with Cron
In order to regularly check for updates, you can use cron (or systemd timers) to run the script regularly.
To use cron, just put something like this to your crontab (or any file in `/etc/cron.d`):
```
*/10 * * * * root /root/bup-backup-sync/bup-sync-trigger.sh
```