aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/cacti/files/patch-scripts-diskfree.pl
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2007-01-29 10:14:29 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2007-01-29 10:14:29 +0000
commitcec49cf8f48420d4e91f2d480cf281bd2d79e999 (patch)
tree26a0b2f13d3c39b0da0fdcdd6f2fdbf06bdc636e /net-mgmt/cacti/files/patch-scripts-diskfree.pl
parent6a1c5fb9a79f259c9737a9bfa2ce5a164672585b (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_EOL'.4-eol
Notes
Notes: svn path=/head/; revision=183609 svn path=/tags/RELEASE_4_EOL/; revision=183610; tag=4-eol
Diffstat (limited to 'net-mgmt/cacti/files/patch-scripts-diskfree.pl')
-rw-r--r--net-mgmt/cacti/files/patch-scripts-diskfree.pl9
1 files changed, 0 insertions, 9 deletions
diff --git a/net-mgmt/cacti/files/patch-scripts-diskfree.pl b/net-mgmt/cacti/files/patch-scripts-diskfree.pl
deleted file mode 100644
index 8df567b2255f..000000000000
--- a/net-mgmt/cacti/files/patch-scripts-diskfree.pl
+++ /dev/null
@@ -1,9 +0,0 @@
---- scripts/diskfree.pl.orig Wed Jan 4 06:08:30 2006
-+++ scripts/diskfree.pl Fri Jan 6 00:16:58 2006
-@@ -1,5 +1,5 @@
- #!/usr/bin/perl
--open(PROCESS,"df --block-size=1024 -P $ARGV[0] | grep -v Filesystem |");
-+open(PROCESS,"df -k $ARGV[0] | grep -v Filesystem |");
- foreach (<PROCESS>) {
- if ($_ =~ /($ARGV[0])(.* )(.*[0-9])(.* )(.*[0-9])(.* )(.*[0-9])(.* )(.*[0-9])%(.* )/) {
- print "megabytes:$7 percent:$9";