diff options
author | Sam Chudnick <sam@chudnick.com> | 2021-11-06 20:25:45 -0400 |
---|---|---|
committer | Sam Chudnick <sam@chudnick.com> | 2021-11-06 20:25:45 -0400 |
commit | 82df70eff06e7b44ee84283070d7f801f7fc1d92 (patch) | |
tree | d17ea9cc6e012b16ff0cdeffcf4a97b5e5cd2d11 /.local/bin/backups/borg-offsite |
initial commit
Diffstat (limited to '.local/bin/backups/borg-offsite')
-rwxr-xr-x | .local/bin/backups/borg-offsite | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.local/bin/backups/borg-offsite b/.local/bin/backups/borg-offsite new file mode 100755 index 0000000..dfc9c01 --- /dev/null +++ b/.local/bin/backups/borg-offsite | |||
@@ -0,0 +1,25 @@ | |||
1 | #!/bin/sh | ||
2 | # Full system backup with Borg | ||
3 | |||
4 | # Backup root partition | ||
5 | sudo borg create --verbose --list --stats --show-rc --exclude-caches --one-file-system \ | ||
6 | --exclude '/dev/*' \ | ||
7 | --exclude '/proc/*' \ | ||
8 | --exclude '/sys/*' \ | ||
9 | --exclude '/tmp/*' \ | ||
10 | --exclude '/mnt/*' \ | ||
11 | --exclude '/media/*' \ | ||
12 | "/mnt/offsite-backup/titan::root-{now:%Y-%m-%d}" / | ||
13 | |||
14 | # Backup boot parition | ||
15 | sudo borg create --verbose --list --stats --show-rc --exclude-caches --one-file-system \ | ||
16 | "/mnt/offsite-backup/titan::boot-{now:%Y-%m-%d}" /boot | ||
17 | |||
18 | # Backup home partition | ||
19 | sudo borg create --verbose --list --stats --show-rc --exclude-caches --one-file-system \ | ||
20 | "/mnt/offsite-backup/titan::home-{now:%Y-%m-%d}" /home | ||
21 | |||
22 | # Backup var partition | ||
23 | sudo borg create --verbose --list --stats --show-rc --exclude-caches --one-file-system \ | ||
24 | "/mnt/offsite-backup/titan::var-{now:%Y-%m-%d}" /var | ||
25 | |||