Enable the df plugin again and fix parsing disk usage

Source: patch "001-fix_disks" from OpenWrt
Author: Martin Blumenstingl
This commit is contained in:
Lars Kruse 2019-07-19 05:45:48 +02:00
parent 22468a04a1
commit d9b1b1ad3f
1 changed files with 1 additions and 1 deletions

View File

@ -19,6 +19,6 @@ fetch_df() {
do
PINFO=$(df -P $PART | tail -1);
PNAME=$(echo $PINFO | cut -d\ -f1 | sed 's/[\/.-]/_/g')
echo "$PNAME.value" $(echo $PINFO | cut -f5 -d\ | sed -e 's/\%//g')
echo "$PNAME.value" $(echo $PINFO | sed -e 's/\%//g' -e 's/ */ /g' | cut -f5 -d' ')
done
}