diff options
author | Harm Weites <harm@weites.com> | 2014-01-23 16:35:33 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-01-23 16:35:33 -0500 |
commit | 8e035f857a06adb5493bbcd35bd427cf2a9e813b (patch) | |
tree | e2f5aa7d6df52b11c242f9e3e4ea2fbf3395de67 /cloudinit/sources/__init__.py | |
parent | c833a84f08019ba4413937f2f1b1f12a4ffe5632 (diff) | |
parent | 75d6f035bcd94e6420ba6de5a9d12c1f554771cf (diff) | |
download | vyos-cloud-init-8e035f857a06adb5493bbcd35bd427cf2a9e813b.tar.gz vyos-cloud-init-8e035f857a06adb5493bbcd35bd427cf2a9e813b.zip |
Initial Freebsd support
This gets initial support for freebsd.
Diffstat (limited to 'cloudinit/sources/__init__.py')
-rw-r--r-- | cloudinit/sources/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/__init__.py b/cloudinit/sources/__init__.py index 4b3bf62f..fef4d460 100644 --- a/cloudinit/sources/__init__.py +++ b/cloudinit/sources/__init__.py @@ -129,7 +129,7 @@ class DataSource(object): # when the kernel named them 'vda' or 'xvda' # we want to return the correct value for what will actually # exist in this instance - mappings = {"sd": ("vd", "xvd")} + mappings = {"sd": ("vd", "xvd", "vtb")} for (nfrom, tlist) in mappings.iteritems(): if not short_name.startswith(nfrom): continue |