From: Lukáš Nykrýn Date: Sat, 15 Oct 2016 17:54:58 +0000 (+0200) Subject: virt: add possibility to skip the check for chroot (#4374) X-Git-Tag: v232~93 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=08a28eeca70eeefb55af61191b63e4c938daca73;p=thirdparty%2Fsystemd.git virt: add possibility to skip the check for chroot (#4374) https://bugzilla.redhat.com/show_bug.cgi?id=1379852 --- diff --git a/src/basic/virt.c b/src/basic/virt.c index 10a20437469..41012d52a00 100644 --- a/src/basic/virt.c +++ b/src/basic/virt.c @@ -33,6 +33,7 @@ #include "string-table.h" #include "string-util.h" #include "virt.h" +#include "env-util.h" static int detect_vm_cpuid(void) { @@ -487,6 +488,9 @@ int detect_virtualization(void) { int running_in_chroot(void) { int ret; + if (getenv_bool("SYSTEMD_IGNORE_CHROOT") > 0) + return 0; + ret = files_same("/proc/1/root", "/"); if (ret < 0) return ret;