Add a more detailed description about the credential used to attest platform identity.
Change-Id: I4bff693c7e05b8cdae91f0e7bfc87b0b1f6fb388
diff --git a/profiles/platform_linux.go b/profiles/platform_linux.go
index 58a5fc1..8cd0ca2 100644
--- a/profiles/platform_linux.go
+++ b/profiles/platform_linux.go
@@ -3,11 +3,9 @@
package profiles
import (
- "fmt"
"syscall"
"veyron.io/veyron/veyron2"
- "veyron.io/veyron/veyron2/security"
)
// Platform returns the description of the Platform this process is running on.
@@ -27,6 +25,5 @@
Machine: utsStr(uts.Machine[:]),
Node: utsStr(uts.Nodename[:]),
}
- d.Identity = security.FakePublicID(fmt.Sprintf("%s/%s/%s", d.Vendor, d.Model, d.Node))
return d, nil
}