summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLUtils.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-02-21 22:49:37 +0000
committerKarl Berry <karl@freefriends.org>2023-02-21 22:49:37 +0000
commiteab992536a7fd32d94b63e83632c05af726670ed (patch)
treeb3c7eae85d75f70e448bc39f6fe4eeea42916a0a /Master/tlpkg/TeXLive/TLUtils.pm
parent54efc3a39dc89992bba11643948dd8a1066644cd (diff)
(diskfree): show actual output from df -P when debugging.
git-svn-id: svn://tug.org/texlive/trunk@66040 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLUtils.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 19ef13ea048..ab0d5ddc9c5 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -886,6 +886,7 @@ sub diskfree {
# /dev/sdb3 6099908248 3590818104 2406881416 60% /home
my ($h,$l) = split(/\n/, $output);
my ($fs, $nrb, $used, $avail, @rest) = split(' ', $l);
+ debug("diskfree: df -P output: $output");
debug("diskfree: used=$used (512-block), avail=$avail (512-block)\n");
# $avail is in 512-byte blocks, so we need to divide by 2*1024 to
# obtain Mb. Require that at least 100M remain free.