33 lines
427 B
Markdown
33 lines
427 B
Markdown
# duplicacy-scripts
|
|
|
|
These scripts are called usually with cron with something like the following
|
|
```
|
|
0 0 * * * /root/duplicacy.sh
|
|
```
|
|
|
|
### Filter file contents
|
|
|
|
#### GauntBitwarden
|
|
```
|
|
FOLDERS_TO_BACKUP=("/opt/bitwarden")
|
|
```
|
|
|
|
#### GauntNAS
|
|
```
|
|
i:etc/.*
|
|
i:data/.*
|
|
i:root/.*
|
|
```
|
|
|
|
#### GauntPlex
|
|
```
|
|
FOLDERS_TO_BACKUP=("/etc" "/root" "/var/lib/plexmediaserver")
|
|
```
|
|
|
|
#### GauntRouter
|
|
```
|
|
FOLDERS_TO_BACKUP=("/cf" "/root")
|
|
```
|
|
|
|
|