Jens True
65ac999075
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
22 lines
693 B
YAML
22 lines
693 B
YAML
notification:
|
|
domain: ntfy.jcktrue.dk
|
|
topic: backup
|
|
log: output.log
|
|
rclone:
|
|
bwlimit: 6M
|
|
backup:
|
|
- title: Example
|
|
source: temp/source
|
|
destination: temp/destination
|
|
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 }}
|
|
|