From d37c485f8792a4c1dfca7189e245c4bb58dec049 Mon Sep 17 00:00:00 2001 From: inxi-svn Date: Thu, 26 Apr 2012 18:16:39 +0000 Subject: [PATCH] added /proc/mdstat output to disk data collector function. --- inxi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/inxi b/inxi index c758ca1..d5a94d1 100755 --- a/inxi +++ b/inxi @@ -1,9 +1,9 @@ #!/bin/bash ######################################################################## #### Script Name: inxi -#### version: 1.7.33 -#### Date: April 16 2012 -#### Patch Number: 00 +#### version: 1.7.34 +#### Date: April 26 2012 +#### Patch Number: 01 ######################################################################## #### SPECIAL THANKS ######################################################################## @@ -1407,6 +1407,7 @@ debug_data_collector() df -h -T -P --exclude-type=aufs --exclude-type=squashfs --exclude-type=unionfs --exclude-type=devtmpfs --exclude-type=tmpfs --exclude-type=iso9660 --exclude-type=devfs --exclude-type=linprocfs --exclude-type=sysfs --exclude-type=fdescfs &> $debug_data_dir/df-h-T-excludes.txt swapon -s &> $debug_data_dir/swapon-s.txt df -P --exclude-type=aufs --exclude-type=squashfs --exclude-type=unionfs --exclude-type=devtmpfs --exclude-type=tmpfs --exclude-type=iso9660 &> $debug_data_dir/df-excludes.txt + cat /proc/mdstat &> $debug_data_dir/proc-mdstat.txt cat $FILE_PARTITIONS &> $debug_data_dir/proc-partitions.txt cat $FILE_SCSI &> $debug_data_dir/proc-scsi.txt cat $FILE_MOUNTS &> $debug_data_dir/proc-mounts.txt