diff --git a/CONTROL/control b/CONTROL/control index 6411a8a1..184ae5cb 100644 --- a/CONTROL/control +++ b/CONTROL/control @@ -1,7 +1,7 @@ Package: webif Priority: optional Section: web -Version: 1.2.7 +Version: 1.2.7-1 Architecture: mipsel Maintainer: af123@hummypkg.org.uk Depends: webif-channelicons(>=1.1.18),lighttpd(>=1.4.39),jim(>=0.76),jim-oo,jim-sqlite3(>=0.76),jim-cgi(>=0.7),jim-binary(>=0.76),service-control(>=2.1),busybox(>=1.20.2-1),lsof(>=4.87),epg(>=1.2.1),hmt(>=2.0.9),ssmtp,anacron,trm(>=1.1),openssl-command,nicesplice,id3v2,file,rsvsync(>=1.0.2),webif-charts(>=1.2-1),stripts(>=1.2.5-3),smartmontools,tmenu(>=1.08),ffmpeg,id3v2,multienv(>=1.6),tcpping(>=1.1),e2fsprogs,wireless-tools(>=29-1),dbupdate,recmon(>=2.0.7) diff --git a/webif/lib/system.class b/webif/lib/system.class index 37f29b1d..999ad5c0 100644 --- a/webif/lib/system.class +++ b/webif/lib/system.class @@ -301,9 +301,9 @@ proc {system disk} {} { proc {system disktemp} {} { if {[catch { - set smart [exec /mod/bin/smartctl -f brief -A [system disk] \ - | grep ^194] - regexp {K *([0-9]+)} $smart x temp + set smart [exec /mod/bin/smartctl -A [system disk] | grep ^194] + regsub -all -- {[[:space:]]+} $smart " " smart + set temp [lindex [split $smart] 9] }]} { set temp 0 }