2007-09-25 12:20:17 +02:00
# do not edit this file, it will be overwritten on update
# persistent storage links: /dev/tape/{by-id,by-path}
2010-04-12 16:52:41 +02:00
ACTION=="remove", GOTO="persistent_storage_tape_end"
2016-07-15 16:47:42 +00:00
ENV{UDEV_DISABLE_PERSISTENT_STORAGE_RULES_FLAG}=="1", GOTO="persistent_storage_tape_end"
2007-09-25 12:20:17 +02:00
# type 8 devices are "Medium Changers"
2012-01-01 04:21:15 +01:00
SUBSYSTEM=="scsi_generic", SUBSYSTEMS=="scsi", ATTRS{type}=="8", IMPORT{program}="scsi_id --sg-version=3 --export --whitelisted -d $devnode", \
2022-03-08 10:41:39 +01:00
SYMLINK+="tape/by-id/scsi-$env{ID_SERIAL} tape/by-id/scsi-$env{ID_SERIAL}-changer"
2007-09-25 12:20:17 +02:00
2017-11-21 12:52:57 +01:00
# iSCSI devices from the same host have all the same ID_SERIAL,
# but additionally a property named ID_SCSI_SERIAL.
SUBSYSTEM=="scsi_generic", SUBSYSTEMS=="scsi", ATTRS{type}=="8", ENV{ID_SCSI_SERIAL}=="?*", \
SYMLINK+="tape/by-id/scsi-$env{ID_SCSI_SERIAL}"
2017-11-21 12:21:49 +01:00
SUBSYSTEM=="scsi_generic", SUBSYSTEMS=="scsi", ATTRS{type}=="8", IMPORT{builtin}="path_id", \
SYMLINK+="tape/by-path/$env{ID_PATH}-changer"
2008-05-09 09:05:15 +02:00
SUBSYSTEM!="scsi_tape", GOTO="persistent_storage_tape_end"
2008-07-11 09:26:04 +02:00
KERNEL=="st*[0-9]|nst*[0-9]", ATTRS{ieee1394_id}=="?*", ENV{ID_SERIAL}="$attr{ieee1394_id}", ENV{ID_BUS}="ieee1394"
2011-08-05 02:00:30 +02:00
KERNEL=="st*[0-9]|nst*[0-9]", ENV{ID_SERIAL}!="?*", SUBSYSTEMS=="usb", IMPORT{builtin}="usb_id"
2010-07-07 09:54:21 +02:00
KERNEL=="st*[0-9]|nst*[0-9]", ENV{ID_SERIAL}!="?*", SUBSYSTEMS=="scsi", KERNELS=="[0-9]*:*[0-9]", ENV{.BSG_DEV}="$root/bsg/$id"
2011-08-05 02:00:30 +02:00
KERNEL=="st*[0-9]|nst*[0-9]", ENV{ID_SERIAL}!="?*", IMPORT{program}="scsi_id --whitelisted --export --device=$env{.BSG_DEV}", ENV{ID_BUS}="scsi"
2022-03-08 10:41:39 +01:00
KERNEL=="st*[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}", OPTIONS+="link_priority=10"
2017-11-21 12:52:57 +01:00
KERNEL=="st*[0-9]", ENV{ID_SCSI_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SCSI_SERIAL}"
KERNEL=="nst*[0-9]", ENV{ID_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SERIAL}-nst"
KERNEL=="nst*[0-9]", ENV{ID_SCSI_SERIAL}=="?*", SYMLINK+="tape/by-id/$env{ID_BUS}-$env{ID_SCSI_SERIAL}-nst"
2007-09-25 12:20:17 +02:00
2008-07-11 09:53:33 +02:00
# by-path (parent device path)
2011-08-05 02:00:30 +02:00
KERNEL=="st*[0-9]|nst*[0-9]", IMPORT{builtin}="path_id"
2008-05-09 09:05:15 +02:00
KERNEL=="st*[0-9]", ENV{ID_PATH}=="?*", SYMLINK+="tape/by-path/$env{ID_PATH}"
2010-07-08 11:36:01 +02:00
KERNEL=="nst*[0-9]", ENV{ID_PATH}=="?*", SYMLINK+="tape/by-path/$env{ID_PATH}-nst"
2007-09-25 12:20:17 +02:00
LABEL="persistent_storage_tape_end"