diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-04-28 18:11:40 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-06-17 10:09:35 -0400 |
commit | 3661cdb8e4bf9745402f2e476d38ba8b21431554 (patch) | |
tree | 0ad83da53e4c44ba447889177973c6f64f9ca334 /src/core | |
parent | fca7e7a4d9e325236893a3774472ebfdeb6540ad (diff) |
machine-id: only look into KVM uuid when we are not running in a
container
(cherry picked from commit 0b36bbc42d3a408531517a02acaf56105b863d55)
Conflicts:
src/core/machine-id-setup.c
(cherry picked from commit 0ade4b119d9d00252ce51f85b9b9019d0717c183)
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/machine-id-setup.c | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/src/core/machine-id-setup.c b/src/core/machine-id-setup.c index 18e015fe7..dcd16308d 100644 --- a/src/core/machine-id-setup.c +++ b/src/core/machine-id-setup.c @@ -88,29 +88,6 @@ static int generate(char id[34]) { } } - /* If that didn't work, see if we are running in qemu/kvm and a - * machine ID was passed in via -uuid on the qemu/kvm command - * line */ - - r = detect_vm(&vm_id); - if (r > 0 && streq(vm_id, "kvm")) { - char uuid[37]; - - fd = open("/sys/class/dmi/id/product_uuid", O_RDONLY|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW); - if (fd >= 0) { - k = loop_read(fd, uuid, 36, false); - close_nointr_nofail(fd); - - if (k >= 36) { - r = shorten_uuid(id, uuid); - if (r >= 0) { - log_info("Initializing machine ID from KVM UUID."); - return 0; - } - } - } - } - /* If that didn't work either, see if we are running in a * container, and a machine ID was passed in via * $container_uuid the way libvirt/LXC does it */ @@ -128,6 +105,30 @@ static int generate(char id[34]) { } } } + + } else { + /* If we are not running in a container, see if we are + * running in qemu/kvm and a machine ID was passed in + * via -uuid on the qemu/kvm command line */ + + r = detect_vm(&vm_id); + if (r > 0 && streq(vm_id, "kvm")) { + char uuid[37]; + + fd = open("/sys/class/dmi/id/product_uuid", O_RDONLY|O_CLOEXEC|O_NOCTTY|O_NOFOLLOW); + if (fd >= 0) { + k = loop_read(fd, uuid, 36, false); + close_nointr_nofail(fd); + + if (k >= 36) { + r = shorten_uuid(id, uuid); + if (r >= 0) { + log_info("Initializing machine ID from KVM UUID."); + return 0; + } + } + } + } } /* If that didn't work, generate a random machine id */ |