tazpanel rev 570

hardware.cgi: filter filesystem name
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 23 12:55:41 2016 +0100 (2016-03-23)
parents d04d60d1892d
children 860687f8f88d
files hardware.cgi
line diff
     1.1 --- a/hardware.cgi	Sun Feb 21 12:31:16 2016 +0100
     1.2 +++ b/hardware.cgi	Wed Mar 23 12:55:41 2016 +0100
     1.3 @@ -407,7 +407,8 @@
     1.4  			# action
     1.5  			action="mount"
     1.6  			[ -n "$mp" ] && action="umount"
     1.7 -			type=$(blkid $fs | sed '/TYPE=/!d;s/.* TYPE="\([^"]*\).*/\1/')
     1.8 +			type=$(blkid $fs | sed '/ TYPE=/!d;s/.* TYPE="\([^"]*\).*/\1/')
     1.9 +			[ -n "$type" ] || continue
    1.10  			[ "$type" == "swap" ] && action="swapon"
    1.11  			if grep -q "^$fs " /proc/swaps; then
    1.12  				action="swapoff"