hddshutdown: Update script for new iostat output format - Bug#12702

- Modification of iostat line as per input in Bug#12702

Fixes: 12702
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Adolf Belka
2021-10-08 23:38:23 +02:00
committed by Arne Fitzenreiter
parent a4d0d0a1e4
commit 74b9fcc65e

View File

@@ -36,7 +36,7 @@ foreach (@devices){
my @array = split(/\//,$_);
$diskstats = `cat /var/run/hddstats-$array[$#array] 2>/dev/null`;
chomp $diskstats;
$newdiskstats = `iostat -d -t $_ | tail -2 | head -1 | awk '{ print \$5","\$6}'`;
$newdiskstats = `iostat -d -t $_ | tail -3 | head -1 | awk '{ print \$6","\$7}'`;
chomp $newdiskstats;
$status = `hdparm -C /dev/$_ | tail -1 | cut -d: -f2`;
chomp $status;