blob: facb665c0a536b53a10324014d38fbce5f7093d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
cat << "EOF"
===========
To get started with backups, do the following:
1. Edit config files at /etc/restic/*.env.sh
2. Enable systemd timers for the default profile with
$ sudo systemctl enable --now restic-backup@default.timer
$ sudo systemctl enable --now restic-check@default.timer
See full tutorial at https://github.com/erikw/restic-automatic-backup-scheduler
===========
EOF
}
|