9 lines
249 B
Bash
Executable File
9 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export RESTIC_REPOSITORY="sftp:root@hosthatch-backup:/backups/proxmox-backups"
|
|
export RESTIC_PASSWORD_FILE=/root/scripts/backups/restic-password
|
|
|
|
restic unlock
|
|
restic backup /mnt/data/proxmoxbackups --no-cache -v
|
|
restic cache --cleanup
|