summaryrefslogtreecommitdiff
path: root/src/virt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/virt.c')
-rw-r--r--src/virt.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/virt.c b/src/virt.c
index 3f0912a8a6..4c526ff454 100644
--- a/src/virt.c
+++ b/src/virt.c
@@ -236,35 +236,6 @@ int detect_container(const char **id) {
fclose(f);
}
- f = fopen("/proc/self/cgroup", "re");
- if (f) {
-
- for (;;) {
- char line[LINE_MAX], *p;
-
- if (!fgets(line, sizeof(line), f))
- break;
-
- p = strchr(strstrip(line), ':');
- if (!p)
- continue;
-
- if (strncmp(p, ":ns:", 4))
- continue;
-
- if (!streq(p, ":ns:/")) {
- fclose(f);
-
- if (id)
- *id = "pidns";
-
- return 1;
- }
- }
-
- fclose(f);
- }
-
return 0;
}