backupscript/config.example.yml
2023-05-31 09:00:20 +00:00

21 lines
654 B
YAML

notification:
domain: ntfy.jcktrue.dk
topic: backup
rclone:
bwlimit: 6M
backup:
- title: Example
source: test/src
destination: test/dest
templates:
notify: |
{{ config.title }}
From {{ config.source }} to {{ config.destination }}
Backup started: {{ start | date }}
Source size: {{ source_size | formatBytes}}
Destination before: {{ destination_size_before | formatBytes}}
Destination after: {{ destination_size_after | formatBytes}}
Destination change : {{ (destination_size_after - destination_size_before) | formatBytes}}
Backup completed: {{ end | date }}