blob: 1a4372e3a2d48e0f3400b64376648cb62f06f1b2 [file] [log] [blame]
From 0516b7a4c8d5686c946944c86f797707ab773a95 Mon Sep 17 00:00:00 2001
From: Chris Morin <cmtm@google.com>
Date: Mon, 3 Dec 2018 17:27:25 -0800
Subject: [PATCH] hardcode machine-id to 0000000000000001
---
src/libsystemd/sd-id128/sd-id128.c | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/src/libsystemd/sd-id128/sd-id128.c b/src/libsystemd/sd-id128/sd-id128.c
index e5f82b8863..fa8f5d429c 100644
--- a/src/libsystemd/sd-id128/sd-id128.c
+++ b/src/libsystemd/sd-id128/sd-id128.c
@@ -83,17 +83,13 @@ _public_ int sd_id128_from_string(const char s[], sd_id128_t *ret) {
_public_ int sd_id128_get_machine(sd_id128_t *ret) {
static thread_local sd_id128_t saved_machine_id = {};
- int r;
assert_return(ret, -EINVAL);
if (sd_id128_is_null(saved_machine_id)) {
- r = id128_read("/etc/machine-id", ID128_PLAIN, &saved_machine_id);
- if (r < 0)
- return r;
-
- if (sd_id128_is_null(saved_machine_id))
- return -ENOMEDIUM;
+ /* TODO(cmtm): remove this once b/120506573 is fixed.
+ * Hardcode machine-id to 0000000000000001 */
+ saved_machine_id = SD_ID128_MAKE(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1);
}
*ret = saved_machine_id;
--
2.21.0.1020.gf2820cf01a-goog