diff options
author | Daniel Watkins <daniel.watkins@canonical.com> | 2015-07-21 13:06:11 +0100 |
---|---|---|
committer | Daniel Watkins <daniel.watkins@canonical.com> | 2015-07-21 13:06:11 +0100 |
commit | 3aeec2dd6460fbdd3b8f217ad8aa231acb4bfd45 (patch) | |
tree | 3be4ff63902ce168869d4deb2b4fdbadf02ccf63 /udev/66-azure-ephemeral.rules | |
parent | 9461b1235f7278440ffb84f1e3d95b3f906e444b (diff) | |
download | vyos-cloud-init-3aeec2dd6460fbdd3b8f217ad8aa231acb4bfd45.tar.gz vyos-cloud-init-3aeec2dd6460fbdd3b8f217ad8aa231acb4bfd45.zip |
Add udev rules for Azure ephemeral disks.
And install them in the Debian packaging.
Diffstat (limited to 'udev/66-azure-ephemeral.rules')
-rw-r--r-- | udev/66-azure-ephemeral.rules | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/udev/66-azure-ephemeral.rules b/udev/66-azure-ephemeral.rules new file mode 100644 index 00000000..b9c5c3ef --- /dev/null +++ b/udev/66-azure-ephemeral.rules @@ -0,0 +1,18 @@ +# Azure specific rules +ACTION!="add|change", GOTO="cloud_init_end" +SUBSYSTEM!="block", GOTO="cloud_init_end" +ATTRS{ID_VENDOR}!="Msft", GOTO="cloud_init_end" +ATTRS{ID_MODEL}!="Virtual_Disk", GOTO="cloud_init_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}="azure_root", GOTO="ci_azure_names" +ATTRS{device_id}=="?00000000-0001-*", ENV{fabric_name}="azure_resource", GOTO="ci_azure_names" +GOTO="cloud_init_end" + +# Create the symlinks +LABEL="ci_azure_names" +ENV{DEVTYPE}=="disk", SYMLINK+="disk/cloud/$env{fabric_name}" +ENV{DEVTYPE}=="partition", SYMLINK+="disk/cloud/$env{fabric_name}-part%n" + +LABEL="cloud_init_end" |