Closed DenisBY closed 1 month ago
It's actually quite easy, you can make use of 2 flags on the retention
target like so:
profile:
backup:
source: ...
retention:
after-backup: true
prune: true
after-backup: true
will run the retention
target after the backup (which is running the forget
command)prune: true
will run the forget command with the --prune
flagGot it, thanks!
I couldn't find in documentation and issues how to execute commands one by one. I.e. I want to execute
backup
, thenforget
and thenprune
. How to achieve it?