1
0
Fork 0

Use raw output for yq

This commit is contained in:
Luca Beltrame 2020-07-20 00:08:10 +02:00
parent 529f815460
commit 5111a2bc14
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -17,7 +17,7 @@ max_days=7
last_bak=$(borgmatic list --last 1 --format "{end} {NEWLINE}" --successful --json | \
jq '.[].archives | sort_by(.end)[].end | gsub("\\.000000$"; "Z") | fromdate')
repository_name=$(yq '.location.repositories[0]' /etc/borgmatic/config.yaml)
repository_name=$(yq -r '.location.repositories[0]' /etc/borgmatic/config.yaml)
current=$(date +%s)
difference="$(( current - last_bak ))"