Compare commits
2 Commits
1fb8645b27
...
97b9060344
Author | SHA1 | Date | |
---|---|---|---|
97b9060344 | |||
16fe205715 |
10
Makefile
10
Makefile
|
@ -40,6 +40,16 @@ rebase:
|
||||||
git rebase master
|
git rebase master
|
||||||
systemctl daemon-reload
|
systemctl daemon-reload
|
||||||
|
|
||||||
|
# Show status of most recent backup run
|
||||||
|
.PHONY: status
|
||||||
|
status:
|
||||||
|
systemctl status --full --lines 999999 --no-pager --all borg-backup || true
|
||||||
|
|
||||||
|
# Watch live log output
|
||||||
|
.PHONY: tail
|
||||||
|
tail:
|
||||||
|
journalctl --all --follow --lines 200 --unit borg-backup
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
rm -f README.html
|
rm -f README.html
|
||||||
|
|
|
@ -348,7 +348,6 @@ def main(argv: typing.List[str]):
|
||||||
size('orig', 'original_size') +
|
size('orig', 'original_size') +
|
||||||
size('comp', 'compressed_size') +
|
size('comp', 'compressed_size') +
|
||||||
size('dedup', 'deduplicated_size') +
|
size('dedup', 'deduplicated_size') +
|
||||||
f" path={data['path']}" +
|
|
||||||
"\n").encode()
|
"\n").encode()
|
||||||
else:
|
else:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in New Issue
Block a user