virt: add possibility to skip the check for chroot (#4374)
authorLukáš Nykrýn <lnykryn@redhat.com>
Sat, 15 Oct 2016 17:54:58 +0000 (19:54 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sat, 15 Oct 2016 17:54:58 +0000 (13:54 -0400)
https://bugzilla.redhat.com/show_bug.cgi?id=1379852

src/basic/virt.c

index 10a2043..41012d5 100644 (file)
@@ -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;