Activity log for bug #73227

Date Who What changed Old value New value Message
2006-11-25 11:46:57 Nicolò Chieffo bug added bug
2006-11-27 10:09:33 Sebastian Dröge dbus: statusexplanation This is a hal bug, dbus has nothing to do with hardware detection, etc
2007-02-10 19:17:37 tokj hal: status Unconfirmed Confirmed
2007-02-10 19:17:37 tokj hal: statusexplanation This is a hal bug, dbus has nothing to do with hardware detection, etc
2007-02-12 01:21:51 Florent Mertens description I'm using feisty. In the drivemount applet and in the places menu, the only thing that appears is the cdrom. after restarting the dbus daemon (after hardware abstraction layer), every partition is shown correctly! dbus version 1.0.1-2ubuntu1 Unfortunately, after restarting dbus Suspend and hibernate disappear from the shut down menu In feisty, volumes that are mounted from fstab with the options "defaults" and/or "auto" are ignored and in consequence don't show up in place and in computer:// This is a different behavior from dapper or edgy, where all partitions, mounted or not, where present in /etc/fstab. People were used to that and it was IMO a good behavior. I also don't see why we should ignore those volumes. And if there is a reason, the rule is wrong cause a volume could be mounted with or without the "defaults" option with no change for the user, but with a different behavior in the desktop. I suggest that we remove those bits from the ignored_volume patch : <!-- Ignore fixed partitions which are automatically mounted from fstab --> <match key="linux.fstab.mountpoint" exists="true"> <merge key="volume.ignore" type="bool">false</merge> <match key="linux.fstab.options" contains="defaults"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="auto"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="noauto"> <merge key="volume.ignore" type="bool">false</merge> </match> </match>
2007-02-12 01:22:36 Florent Mertens description In feisty, volumes that are mounted from fstab with the options "defaults" and/or "auto" are ignored and in consequence don't show up in place and in computer:// This is a different behavior from dapper or edgy, where all partitions, mounted or not, where present in /etc/fstab. People were used to that and it was IMO a good behavior. I also don't see why we should ignore those volumes. And if there is a reason, the rule is wrong cause a volume could be mounted with or without the "defaults" option with no change for the user, but with a different behavior in the desktop. I suggest that we remove those bits from the ignored_volume patch : <!-- Ignore fixed partitions which are automatically mounted from fstab --> <match key="linux.fstab.mountpoint" exists="true"> <merge key="volume.ignore" type="bool">false</merge> <match key="linux.fstab.options" contains="defaults"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="auto"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="noauto"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> In feisty, volumes that are mounted from fstab with the options "defaults" and/or "auto" are ignored and in consequence don't show up in place and in computer:// This is a different behavior from dapper or edgy, where all partitions, mounted or not, where present in computer://. People were used to that and it was IMO a good behavior. I also don't see why we should ignore those volumes. And if there is a reason, the rule is wrong cause a volume could be mounted with or without the "defaults" option with no change for the user, but with a different behavior in the desktop. I suggest that we remove those bits from the ignored_volume patch : <!-- Ignore fixed partitions which are automatically mounted from fstab --> <match key="linux.fstab.mountpoint" exists="true"> <merge key="volume.ignore" type="bool">false</merge> <match key="linux.fstab.options" contains="defaults"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="auto"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="noauto"> <merge key="volume.ignore" type="bool">false</merge> </match> </match>
2007-02-19 20:08:49 Florent Mertens description In feisty, volumes that are mounted from fstab with the options "defaults" and/or "auto" are ignored and in consequence don't show up in place and in computer:// This is a different behavior from dapper or edgy, where all partitions, mounted or not, where present in computer://. People were used to that and it was IMO a good behavior. I also don't see why we should ignore those volumes. And if there is a reason, the rule is wrong cause a volume could be mounted with or without the "defaults" option with no change for the user, but with a different behavior in the desktop. I suggest that we remove those bits from the ignored_volume patch : <!-- Ignore fixed partitions which are automatically mounted from fstab --> <match key="linux.fstab.mountpoint" exists="true"> <merge key="volume.ignore" type="bool">false</merge> <match key="linux.fstab.options" contains="defaults"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="auto"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="noauto"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> In feisty, volumes that are mounted from fstab with the options "defaults" and/or "auto" are ignored and in consequence don't show up in place and in computer:// This is a different behavior from dapper or edgy, where all partitions, mounted or not, where present in computer://. People were used to that and it was IMO a good behavior. I also don't see why we should ignore those volumes. And if there is a reason, the rule is wrong cause a volume could be mounted with or without the "defaults" option with no change for the user, but with a different behavior in the desktop. I suggest to revert the ignored volume policy to the one before 0.5.8.1-3ubuntu6 : In the ignored_volume patch, replace : <!-- Ignore fixed partitions which are automatically mounted from fstab --> <match key="linux.fstab.mountpoint" exists="true"> <merge key="volume.ignore" type="bool">false</merge> <match key="linux.fstab.options" contains="defaults"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="auto"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="noauto"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> by : <match key="@block.storage_device:storage.hotpluggable" bool="false"> <match key="@block.storage_device:storage.removable" bool="false"> <merge key="volume.ignore" type="bool">true</merge> <match key="volume.is_mounted" bool="true"> <!-- Show /media/ drives --> <match key="volume.mount_point" compare_gt="/media"> <match key="volume.mount_point" compare_lt="/media0"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> </match>
2007-02-19 23:33:34 Florent Mertens description In feisty, volumes that are mounted from fstab with the options "defaults" and/or "auto" are ignored and in consequence don't show up in place and in computer:// This is a different behavior from dapper or edgy, where all partitions, mounted or not, where present in computer://. People were used to that and it was IMO a good behavior. I also don't see why we should ignore those volumes. And if there is a reason, the rule is wrong cause a volume could be mounted with or without the "defaults" option with no change for the user, but with a different behavior in the desktop. I suggest to revert the ignored volume policy to the one before 0.5.8.1-3ubuntu6 : In the ignored_volume patch, replace : <!-- Ignore fixed partitions which are automatically mounted from fstab --> <match key="linux.fstab.mountpoint" exists="true"> <merge key="volume.ignore" type="bool">false</merge> <match key="linux.fstab.options" contains="defaults"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="auto"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="noauto"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> by : <match key="@block.storage_device:storage.hotpluggable" bool="false"> <match key="@block.storage_device:storage.removable" bool="false"> <merge key="volume.ignore" type="bool">true</merge> <match key="volume.is_mounted" bool="true"> <!-- Show /media/ drives --> <match key="volume.mount_point" compare_gt="/media"> <match key="volume.mount_point" compare_lt="/media0"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> </match> In feisty, volumes that are mounted from fstab with the options "defaults" and/or "auto" are ignored and in consequence don't show up in place and in computer:// This is a different behavior from dapper or edgy, where all partitions, mounted or not, where present in computer://. People were used to that and it was IMO a good behavior. I also don't see why we should ignore those volumes. And if there is a reason, the rule is wrong cause a volume could be mounted with or without the "defaults" option with no change for the user, but with a different behavior in the desktop. I suggest to revert the ignored volume policy to the one before 0.5.8.1-3ubuntu6 : In the ignored_volume patch, replace : <!-- Ignore fixed partitions which are automatically mounted from fstab --> <match key="linux.fstab.mountpoint" exists="true"> <merge key="volume.ignore" type="bool">false</merge> <match key="linux.fstab.options" contains="defaults"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="auto"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="noauto"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> by : <!-- Ignore fixed partitions which are not mounted in /media --> <match key="@block.storage_device:storage.hotpluggable" bool="false"> <match key="@block.storage_device:storage.removable" bool="false"> <match key="volume.is_mounted" bool="true"> <merge key="volume.ignore" type="bool">true</merge> <!-- Show /media/ drives --> <match key="volume.mount_point" compare_gt="/media"> <match key="volume.mount_point" copare_lt="/media0"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> </match> </match> </match>
2007-02-20 13:12:20 Florent Mertens description In feisty, volumes that are mounted from fstab with the options "defaults" and/or "auto" are ignored and in consequence don't show up in place and in computer:// This is a different behavior from dapper or edgy, where all partitions, mounted or not, where present in computer://. People were used to that and it was IMO a good behavior. I also don't see why we should ignore those volumes. And if there is a reason, the rule is wrong cause a volume could be mounted with or without the "defaults" option with no change for the user, but with a different behavior in the desktop. I suggest to revert the ignored volume policy to the one before 0.5.8.1-3ubuntu6 : In the ignored_volume patch, replace : <!-- Ignore fixed partitions which are automatically mounted from fstab --> <match key="linux.fstab.mountpoint" exists="true"> <merge key="volume.ignore" type="bool">false</merge> <match key="linux.fstab.options" contains="defaults"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="auto"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="noauto"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> by : <!-- Ignore fixed partitions which are not mounted in /media --> <match key="@block.storage_device:storage.hotpluggable" bool="false"> <match key="@block.storage_device:storage.removable" bool="false"> <match key="volume.is_mounted" bool="true"> <merge key="volume.ignore" type="bool">true</merge> <!-- Show /media/ drives --> <match key="volume.mount_point" compare_gt="/media"> <match key="volume.mount_point" copare_lt="/media0"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> </match> </match> </match> In feisty, volumes that are mounted from fstab with the options "defaults" and/or "auto" are ignored and in consequence don't show up in place and in computer:// This is a different behavior from dapper or edgy, where all partitions, mounted or not, where present in computer://. People were used to that and it was IMO a good behavior. I also don't see why we should ignore those volumes. And if there is a reason, the rule is wrong cause a volume could be mounted with or without the "defaults" option with no change for the user, but with a different behavior in the desktop. I suggest to revert the ignored volume policy to the one before 0.5.8.1-3ubuntu6, with some modification, to not show only fixed partitions which are not mounted in /media : In the ignored_volume patch, replace : <!-- Ignore fixed partitions which are automatically mounted from fstab --> <match key="linux.fstab.mountpoint" exists="true"> <merge key="volume.ignore" type="bool">false</merge> <match key="linux.fstab.options" contains="defaults"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="auto"> <merge key="volume.ignore" type="bool">true</merge> </match> <match key="linux.fstab.options" contains="noauto"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> by : <!-- Ignore fixed partitions which are not mounted in /media --> <match key="@block.storage_device:storage.hotpluggable" bool="false"> <match key="@block.storage_device:storage.removable" bool="false"> <match key="volume.is_mounted" bool="true"> <merge key="volume.ignore" type="bool">true</merge> <!-- Show /media/ drives --> <match key="volume.mount_point" compare_gt="/media"> <match key="volume.mount_point" copare_lt="/media0"> <merge key="volume.ignore" type="bool">false</merge> </match> </match> </match> </match> </match>
2007-02-27 11:19:46 Martin Pitt hal: status Confirmed In Progress
2007-02-27 11:19:46 Martin Pitt hal: importance Undecided Medium
2007-02-27 11:19:46 Martin Pitt hal: assignee pitti
2007-03-30 14:53:01 Martin Pitt nautilus: status Unconfirmed Rejected
2007-03-30 14:53:01 Martin Pitt nautilus: statusexplanation Nothing to do with nautilus.
2007-03-30 14:53:14 Martin Pitt hal: status In Progress Fix Committed
2007-03-30 14:53:14 Martin Pitt hal: statusexplanation Fixed in bzr head.
2007-03-30 16:12:03 Martin Pitt nautilus: status Rejected Fix Released
2007-03-30 16:12:03 Martin Pitt nautilus: statusexplanation Nothing to do with nautilus. hal (0.5.8.1-4ubuntu12) feisty; urgency=low . * Add debian/patches/66-NULL-fstype-crash.patch: Do not crash on NULL volume.fstypes, and assing some fallback values to them. Patch from Danny Kukawa in FD#10429. (LP: #87800) * debian/patches/24_ignored_volumes.patch: Ignore partitions which are mounted by default in /etc/fstab only when they are not currently mounted (this could happen on damaged partitions, failed fsck, etc., and inexperienced users should not randomly mount those.). Since this would make system partitions visible, limit the visible ones to /media/ again, as in previous Ubuntu releases. (LP: #73227) * Add debian/10-storage-policy.fdi: Resurrect 'Eject all USB and Firewire storage devices', just as in previous Ubuntu releases. (LP: #97366) * Add debian/patches/67-fix-probe-volume.patch: Attempt to fix scrambled labels. Taken from FD#10362, thanks to Danny Kukawa. (LP: #69914)
2007-03-31 23:20:09 eroll bug added attachment 'hal.log' (hal log)
2007-04-02 08:12:46 Martin Pitt hal: status Fix Committed Fix Released
2007-04-02 08:12:46 Martin Pitt hal: statusexplanation Fixed in bzr head. eroll, apparently you have a different problem than this one then. Can you please file a new bug for this?
2007-04-12 00:16:21 Eugenia Loli-Queru bug added attachment 'desktop.png' (desktop.png)
2010-02-21 06:53:27 Launchpad Janitor branch linked lp:ubuntu/hal