2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-12-24 12:11:52 +00:00

Adjust ubuntu architecture name

x86_64 is the confluent  convention
for 64 bit x86.
This commit is contained in:
Jarrod Johnson 2020-05-05 09:26:42 -04:00
parent e4a4bdf317
commit e1e34f9f31

View File

@ -93,6 +93,8 @@ def check_ubuntu(isoinfo):
val = val.strip()
if key == b'ARCH':
arch = val
if arch == b'amd64':
arch = b'x86_64'
elif key == b'DISKNAME':
variant, ver, _ = val.split(b' ', 2)
if variant != b'Ubuntu-Server':