diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | draksnapshot-applet | 18 |
2 files changed, 19 insertions, 0 deletions
@@ -1,5 +1,6 @@ - applet: o do not crash if notify deamon failed on ->show (#40031) + o exclude root fs from found USB discs: Version 0.9 - 3 April 2008, Thierry Vignaud diff --git a/draksnapshot-applet b/draksnapshot-applet index 6e6265b..a44a1ba 100755 --- a/draksnapshot-applet +++ b/draksnapshot-applet @@ -170,6 +170,24 @@ sub configure() { sub firstCheck() { my @discs = grep { $_->{usb_bus} && detect_devices::may_be_a_hd($_) } detect_devices::getSCSI(); + + # find root fs: + my $root; + foreach (cat_("/etc/mtab"), cat_("/proc/mounts")) { + my ($dev, $mntpoint) = split; + if ($mntpoint eq '/') { + $root = $dev; + last; + } + } + + # we just want the basename of the root disc: + $root =~ s!.*/!!; + $root =~ s!\d*$!!; + + # exclude root fs from found USB discs: + @discs = grep { $_ ne $root } map { $_->{device} } @discs; + go2State(@discs ? 'disk_found' : 'okay'); } |