From 0fa8bfa1104b18aaed8afb720cf0fa8ad8b3ffa2 Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Wed, 26 Feb 2014 14:21:40 -0500 Subject: SmartOS: do not run on arm as dmidecode causes problems See LP: #1243287 for more information, but the easiest thing to do here is just not run smartos on arm. LP: #1243287 --- cloudinit/sources/DataSourceSmartOS.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'cloudinit') diff --git a/cloudinit/sources/DataSourceSmartOS.py b/cloudinit/sources/DataSourceSmartOS.py index 8d4a16e6..3c30541c 100644 --- a/cloudinit/sources/DataSourceSmartOS.py +++ b/cloudinit/sources/DataSourceSmartOS.py @@ -174,6 +174,12 @@ class DataSourceSmartOS(sources.DataSource): LOG.debug("Host does not appear to be on SmartOS") return False + uname_arch = os.uname()[4] + if uname_arch.startswith("arm") or uname_arch == "aarch64": + # Disabling because dmidcode in dmi_data() crashes kvm process + LOG.debug("Disabling SmartOS datasource on arm (LP: #1243287)") + return False + dmi_info = dmi_data() if dmi_info is False: LOG.debug("No dmidata utility found") -- cgit v1.2.3