Ubuntu Pastebin

Paste from utlemming at Thu, 4 Jun 2015 14:51:17 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
ACTION!="add|change", GOTO="ci_end"
SUBSYSTEM!="block", GOTO="ci_end"
ATTRS{ID_VENDOR}!="Msft", GOTO="ci_end"
ATTRS{ID_MODEL}!="Virtual_Disk", GOTO="ci_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}="ci-root", GOTO="ci_names"
ATTRS{device_id}=="?00000000-0001-*", ENV{fabric_name}="ci-ephemeral", GOTO="ci_names"
GOTO="ci_end"

# Create the symlinks
LABEL="ci_names"
ENV{DEVTYPE}=="disk", SYMLINK+="disk/cloud-init/$env{fabric_name}"
ENV{DEVTYPE}=="partition", SYMLINK+="disk/cloud-init/$env{fabric_name}-part%n"

LABEL="ci_end"
Download as text