backupscript/config.example.yml

22 lines
701 B
YAML
Raw Normal View History

2023-05-26 11:47:40 +00:00
notification:
2023-06-07 09:56:23 +00:00
domain: https://ntfy.jcktrue.dk
2023-05-26 11:47:40 +00:00
topic: backup
2023-05-31 14:42:43 +00:00
log: output.log
2023-05-31 09:00:20 +00:00
rclone:
bwlimit: 6M
2023-05-26 11:47:40 +00:00
backup:
- title: Example
2023-05-31 14:34:35 +00:00
source: temp/source
destination: temp/destination
2023-05-26 11:47:40 +00:00
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 }}