debug btrfs stats on cleanup

hopefully that will shed some light on ENOSPC issues
This commit is contained in:
Harald Sitter
2024-10-25 12:14:41 +02:00
parent aa5ee488ab
commit f6758bcfdd

View File

@@ -18,6 +18,8 @@ EXPORT="$OUTPUT.export"
cleanup() {
[ -d "$EXPORT" ] && btrfs subvolume delete "$EXPORT"
btrfs filesystem show . || true
btrfs filesystem df . || true
return 0
}
trap cleanup INT TERM EXIT