• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

bin/H03-May-2022-138104

etc/H13-Apr-2017-10769

LICENSEH A D13-Apr-20171.1 KiB2217

README.mdH A D13-Apr-2017657 2217

README.md

1# tarsnap-periodic
2Scripts for tarsnap backups with periodic on FreeBSD.
3
4All credit goes to [ross/zfs-periodic](https://github.com/ross/zfs-periodic) -- I did little beyond `sed s/zfs snapshot/tarsnap/`.
5
6Install from ports: `sysutils/tarsnap-periodic`.
7
8In order to enable periodic tarsnap backups you need
9to add these lines to your `/etc/periodic.conf`:
10
11```sh
12daily_tarsnap_backup_enable="YES"
13daily_tarsnap_backup_paths="/"
14daily_tarsnap_backup_keep=7
15weekly_tarsnap_backup_enable="YES"
16weekly_tarsnap_backup_paths="/"
17weekly_tarsnap_backup_keep=5
18monthly_tarsnap_backup_enable="YES"
19monthly_tarsnap_backup_paths="/"
20monthly_tarsnap_backup_keep=2
21```
22