From 999f82157efecf9d4e355892a306b5442204ace3 Mon Sep 17 00:00:00 2001 From: hjp Date: Wed, 8 Mar 2006 11:35:07 +0000 Subject: [PATCH] check for df changed - rebuilt. --- quotacheck/configure | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/quotacheck/configure b/quotacheck/configure index 35f1155..ee8233f 100755 --- a/quotacheck/configure +++ b/quotacheck/configure @@ -30,14 +30,14 @@ echo " -e 's,@@@perl@@@,$perl,g' \\" >> customize.$$ for i in /bin/df /usr/bin/df /usr/bin/bdf /usr/sbin/df /usr/local/bin/df do a=`$i | awk 'NR == 1 {print $2}'` - if [ "$a" = "kbytes" -o "$a" = "1024-blocks" -o "$a" = "1k-blocks" ] + if [ "$a" = "kbytes" -o "$a" = "1024-blocks" -o "$a" = "1k-blocks" -o "$a" = "1K-blocks" ] then echo $i works df="$i" break fi a=`$i -k | awk 'NR == 1 {print $2}'` - if [ "$a" = "kbytes" -o "$a" = "1024-blocks" -o "$a" = "1k-blocks" ] + if [ "$a" = "kbytes" -o "$a" = "1024-blocks" -o "$a" = "1k-blocks" -o "$a" = "1K-blocks" ] then echo $i -k works df="$i -k" @@ -102,6 +102,7 @@ fi echo " -e 's,@@@sendmail@@@,$sendmail,g' \\" >> customize.$$ ################################################################ +# $Id: configure,v 1.7 2006-03-08 11:35:07 hjp Exp $ # find scp command # touch scp.test.$$ @@ -128,10 +129,7 @@ fi echo " -e 's,@@@scp@@@,$scp,g' \\" >> customize.$$ # $Log: configure,v $ -# Revision 1.6 2005-09-29 10:54:52 hjp -# No real change. -# -# Revision 1.5 2005/03/29 10:03:14 hjp +# Revision 1.7 2006-03-08 11:35:07 hjp # check for df changed - rebuilt. # # Revision 1.1 2005/01/07 16:01:34 hjp