-
Notifications
You must be signed in to change notification settings - Fork 1
/
.restic.sh
executable file
·76 lines (63 loc) · 1.95 KB
/
.restic.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/bin/bash
HDDPATH=/media/fbence/LaCie
echo email
for backend in \
local:$HDDPATH/restic/email \
rclone:onedrive:mashenka-restic/email
do
echo backend: $backend
restic backup -r $backend --password-command "pass show restic" \
/home/fbence/.mail \
--exclude=".notmuch/**"
restic forget -r $backend --password-command "pass show restic" \
--keep-within-daily 7d \
--keep-within-weekly 1m \
--keep-within-monthly 1y \
--keep-within-yearly 75y
done
echo documents
for backend in \
local:$HDDPATH/restic/documents \
rclone:onedrive:mashenka-restic/documents
do
echo backend: $backend
restic backup -r $backend --password-command "pass show restic" \
/home/fbence/Documents
restic forget -r $backend --password-command "pass show restic" \
--keep-within-daily 7d \
--keep-within-weekly 1m \
--keep-within-monthly 1y \
--keep-within-yearly 75y
done
echo pictures
for backend in \
local:$HDDPATH/restic/pictures \
rclone:onedrive:mashenka-restic/pictures
do
echo backend: $backend
restic backup -r $backend --password-command "pass show restic" \
/disk2/Pictures \
/disk2/FamilyPictures \
/disk2/PicturesÉviBence \
/disk2/PhonePics
restic forget -r $backend --password-command "pass show restic" \
--keep-within-daily 7d \
--keep-within-weekly 1m \
--keep-within-monthly 1y \
--keep-within-yearly 75y
done
echo org
for backend in \
local:$HDDPATH/restic/org \
rclone:onedrive:mashenka-restic/org
do
echo backend: $backend
restic backup -r $backend --password-command "pass show restic" \
/home/fbence/org \
/home/fbence/.task
restic forget -r $backend --password-command "pass show restic" \
--keep-within-daily 7d \
--keep-within-weekly 1m \
--keep-within-monthly 1y \
--keep-within-yearly 75y
done