diff --git a/initialize/oem.go b/initialize/oem.go index b7f3d6c..7fe1fd6 100644 --- a/initialize/oem.go +++ b/initialize/oem.go @@ -18,9 +18,9 @@ type OEMRelease struct { func (oem *OEMRelease) String() string { fields := []string{ - fmt.Sprintf("ID=%q", oem.ID), + fmt.Sprintf("ID=%s", oem.ID), + fmt.Sprintf("VERSION_ID=%s", oem.VersionID), fmt.Sprintf("NAME=%q", oem.Name), - fmt.Sprintf("VERSION_ID=%q", oem.VersionID), fmt.Sprintf("HOME_URL=%q", oem.HomeURL), fmt.Sprintf("BUG_REPORT_URL=%q", oem.BugReportURL), } diff --git a/initialize/oem_test.go b/initialize/oem_test.go index 50ebaee..1ef10d4 100644 --- a/initialize/oem_test.go +++ b/initialize/oem_test.go @@ -42,9 +42,9 @@ func TestOEMReleaseWrittenToDisk(t *testing.T) { t.Fatalf("Unable to read expected file: %v", err) } - expect := `ID="rackspace" + expect := `ID=rackspace +VERSION_ID=168.0.0 NAME="Rackspace Cloud Servers" -VERSION_ID="168.0.0" HOME_URL="https://www.rackspace.com/cloud/servers/" BUG_REPORT_URL="https://github.com/coreos/coreos-overlay" `