diff options
-rw-r--r-- | mount-setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mount-setup.c b/mount-setup.c index b802894662..d2a1d0a942 100644 --- a/mount-setup.c +++ b/mount-setup.c @@ -62,7 +62,7 @@ bool mount_point_is_api(const char *path) { if (path_startswith(path, mount_table[i].where)) return true; - return false; + return path_startswith(path, "/cgroup/"); } static int mount_one(const MountPoint *p) { |