7 lines
183 B
Bash
Executable File
7 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source $HOME/.bin/borg_common
|
|
|
|
info "Starting backup"
|
|
borg create --list --verbose --filter AME --stats --show-rc --compression zstd,3 ::'{hostname}-{now}' $BACKUP_PATHS
|