diff options
| author | Scott Moser <smoser@brickies.net> | 2016-11-04 10:38:15 -0400 |
|---|---|---|
| committer | Scott Moser <smoser@brickies.net> | 2016-11-04 10:38:15 -0400 |
| commit | 223e50f51e281e716b2b289c2c9b772c3eaeb563 (patch) | |
| tree | 0020c78b04aee768cdc6cb25438e7a48c7d1887e /cloudinit/util.py | |
| parent | 81c821916d18efeee4339ed326c6d9a5a3d136e9 (diff) | |
| parent | a1cdebdea65ccd827060c823146992bba9debe19 (diff) | |
| download | vyos-cloud-init-223e50f51e281e716b2b289c2c9b772c3eaeb563.tar.gz vyos-cloud-init-223e50f51e281e716b2b289c2c9b772c3eaeb563.zip | |
merge from master at 0.7.8-34-ga1cdebd
Diffstat (limited to 'cloudinit/util.py')
| -rw-r--r-- | cloudinit/util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/util.py b/cloudinit/util.py index 4b3fd0cb..9a3d3cd7 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -2342,7 +2342,8 @@ def read_dmi_data(key): # running dmidecode can be problematic on some arches (LP: #1243287) uname_arch = os.uname()[4] if not (uname_arch == "x86_64" or - (uname_arch.startswith("i") and uname_arch[2:] == "86")): + (uname_arch.startswith("i") and uname_arch[2:] == "86") or + uname_arch == 'aarch64'): LOG.debug("dmidata is not supported on %s", uname_arch) return None |
