summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2012-01-20 12:54:35 -0500
committerDavid Zeuthen <davidz@redhat.com>2012-01-20 12:54:35 -0500
commit71176998d938759cb0b4933ef1fe37158d572d54 (patch)
tree3dd92f539ba1e0a7b8707dbd9289b462a702c4dc
parent44802979a1aa004407ba81d7166569c6fc20f436 (diff)
downloadgvfs-71176998d938759cb0b4933ef1fe37158d572d54.tar.gz
Also add UDISKS_IGNORE example
Signed-off-by: David Zeuthen <davidz@redhat.com>
-rw-r--r--monitor/udisks2/what-is-shown.txt15
1 files changed, 9 insertions, 6 deletions
diff --git a/monitor/udisks2/what-is-shown.txt b/monitor/udisks2/what-is-shown.txt
index 0a2a2532..4c30fce3 100644
--- a/monitor/udisks2/what-is-shown.txt
+++ b/monitor/udisks2/what-is-shown.txt
@@ -62,11 +62,14 @@ shown) using udev properties. While the udisks(8) man page is the
authoritative source for the supported properties, we mention specific
examples here
- # Don't automount USB Kingston DataTraveler devices
- SUBSYSTEMS=="usb", ENV{ID_VENDOR}=="*Kingston*", ENV{ID_MODEL}=="*DataTraveler*", ENV{UDISKS_AUTO}="0"
+# Don't automount USB Kingston DataTraveler devices
+SUBSYSTEMS=="usb", ENV{ID_VENDOR}=="*Kingston*", ENV{ID_MODEL}=="*DataTraveler*", ENV{UDISKS_AUTO}="0"
- # Automount this specific hard disk and don't require admin authentication
- ENV{ID_SERIAL}=="WDC_WD1002FAEX-00Y9A0_WD-WCAW30039835", ENV{UDISKS_AUTO}="1", ENV{UDISKS_SYSTEM}="0"
+# Automount this specific hard disk and don't require admin authentication
+ENV{ID_SERIAL}=="WDC_WD1002FAEX-00Y9A0_WD-WCAW30039835", ENV{UDISKS_AUTO}="1", ENV{UDISKS_SYSTEM}="0"
- # Specify name and icon name for a specific device.
- ENV{ID_MEDIA_PLAYER}=="apple-ipod", ENV{UDISKS_NAME}="David's iPod", ENV{UDISKS_ICON_NAME}="multimedia-player-ipod"
+# Specify name and icon name for a specific device.
+ENV{ID_MEDIA_PLAYER}=="apple-ipod", ENV{UDISKS_NAME}="David's iPod", ENV{UDISKS_ICON_NAME}="multimedia-player-ipod"
+
+# Make sure this specific hard disk does not appear in the user interface
+ENV{ID_SERIAL}=="HITACHI_HTS723232A7A364_E3834563KRG2HN", ENV{UDISKS_IGNORE}="1"