From 9a5cb1371b6d8b0a04bd08665bcf9b06cb40c64c Mon Sep 17 00:00:00 2001 From: Zbigniew Jędrzejewski-Szmek Date: Thu, 3 Oct 2013 22:13:01 -0400 Subject: gpt-auto-generator: exit immediately if in container Otherwise we get an ugly warning when running systemd in a container. --- src/gpt-auto-generator/gpt-auto-generator.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/gpt-auto-generator') diff --git a/src/gpt-auto-generator/gpt-auto-generator.c b/src/gpt-auto-generator/gpt-auto-generator.c index ca54925da4..d2b4213af2 100644 --- a/src/gpt-auto-generator/gpt-auto-generator.c +++ b/src/gpt-auto-generator/gpt-auto-generator.c @@ -38,6 +38,7 @@ #include "libudev.h" #include "special.h" #include "unit-name.h" +#include "virt.h" /* TODO: * @@ -481,6 +482,13 @@ int main(int argc, char *argv[]) { umask(0022); if (in_initrd()) { + log_debug("In initrd, exiting."); + r = 0; + goto finish; + } + + if (detect_container(NULL) > 0) { + log_debug("In a container, exiting."); r = 0; goto finish; } -- cgit v1.2.3-54-g00ecf