From f9cd6b27fad4d9fdf557138966f2d34cae234edb Mon Sep 17 00:00:00 2001 From: Ben Howard Date: Mon, 9 Mar 2015 06:26:48 -0600 Subject: Import patches-unapplied version 2.0.8-0ubuntu7 to ubuntu/vivid-proposed Imported using git-ubuntu import. Changelog parent: 379762a303b368246edd6419b4bfbe9b76ce517c New changelog entries: * Added /lib/udev/rules.d/66-azure-storage.rules: create symlinks for /dev/disk/azure/{root,resource} to correctly identify disks (LP: #1411582). --- debian/66-azure-storage.rules | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 debian/66-azure-storage.rules (limited to 'debian/66-azure-storage.rules') diff --git a/debian/66-azure-storage.rules b/debian/66-azure-storage.rules new file mode 100644 index 0000000..1b64824 --- /dev/null +++ b/debian/66-azure-storage.rules @@ -0,0 +1,17 @@ +ACTION!="add|change", GOTO="azure_end" +SUBSYSTEM!="block", GOTO="azure_end" +ATTRS{ID_VENDOR}!="Msft", GOTO="azure_end" +ATTRS{ID_MODEL}!="Virtual_Disk", GOTO="azure_end" + +# Root has a GUID of 0000 as the second value +# The resource/resource has GUID of 0001 as the second value +ATTRS{device_id}=="?00000000-0000-*", ENV{fabric_name}="root", GOTO="azure_names" +ATTRS{device_id}=="?00000000-0001-*", ENV{fabric_name}="resource", GOTO="azure_names" +GOTO="azure_end" + +# Create the symlinks +LABEL="azure_names" +ENV{DEVTYPE}=="disk", SYMLINK+="disk/azure/$env{fabric_name}" +ENV{DEVTYPE}=="partition", SYMLINK+="disk/azure/$env{fabric_name}-part%n" + +LABEL="azure_end" -- cgit v1.2.3