diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2013-12-12 22:02:44 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2013-12-12 22:02:44 +0000 |
commit | 412cd0f5421cbe87ffc89715bd4a56ab92b8a16a (patch) | |
tree | b4d9a0369bc2eae174382dc4046607e43e2abd9f /etc/daily | |
parent | 4148fc06d41ed70debab35581d99c9a495f0ea49 (diff) |
Have df(1) in the daily output show the inodes used/free.
a few developers thought this was a reasonable/good idea.
Diffstat (limited to 'etc/daily')
-rw-r--r-- | etc/daily | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/daily b/etc/daily index ff27e5c923a..ca6cd591431 100644 --- a/etc/daily +++ b/etc/daily @@ -1,5 +1,5 @@ # -# $OpenBSD: daily,v 1.77 2013/11/03 18:28:34 deraadt Exp $ +# $OpenBSD: daily,v 1.78 2013/12/12 22:02:43 brad Exp $ # From: @(#)daily 8.2 (Berkeley) 1/25/94 # # For local additions, create the file /etc/daily.local. @@ -146,7 +146,7 @@ next_part "Checking subsystem status:" if [ "X$VERBOSESTATUS" != X0 ]; then echo "" echo "disks:" - df -kl + df -ikl echo "" dump W fi |