From b3c240789b884b56367b0cd784055f91ecfbf06c Mon Sep 17 00:00:00 2001 From: Ben Howard Date: Mon, 7 Oct 2013 10:20:21 -0600 Subject: [PATCH] Fixed SmartOS hostname whitespace bug (LP: #1236445). --- cloudinit/sources/DataSourceSmartOS.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/sources/DataSourceSmartOS.py b/cloudinit/sources/DataSourceSmartOS.py index ba7e6acc..8c575fc0 100644 --- a/cloudinit/sources/DataSourceSmartOS.py +++ b/cloudinit/sources/DataSourceSmartOS.py @@ -274,7 +274,7 @@ def dmi_data(): except Exception as e: util.logexc(LOG, "Failed to get system UUID", e) - return sys_uuid.lower(), sys_type + return (sys_uuid.lower()).strip(), sys_type.strip() # Used to match classes to dependencies