summaryrefslogtreecommitdiff
path: root/debian/66-azure-storage.rules
diff options
context:
space:
mode:
authorBen Howard <ben.howard@ubuntu.com>2015-03-09 06:26:48 -0600
committerusd-importer <ubuntu-server@lists.ubuntu.com>2015-03-09 12:53:34 +0000
commitf9cd6b27fad4d9fdf557138966f2d34cae234edb (patch)
treeb162abab788d16b2b9c2cb95812d33028dc83d83 /debian/66-azure-storage.rules
parent379762a303b368246edd6419b4bfbe9b76ce517c (diff)
downloadvyos-walinuxagent-f9cd6b27fad4d9fdf557138966f2d34cae234edb.tar.gz
vyos-walinuxagent-f9cd6b27fad4d9fdf557138966f2d34cae234edb.zip
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).
Diffstat (limited to 'debian/66-azure-storage.rules')
-rw-r--r--debian/66-azure-storage.rules17
1 files changed, 17 insertions, 0 deletions
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"