aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libutil/namespaces.cc14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/libutil/namespaces.cc b/src/libutil/namespaces.cc
index b1cdbfe03..fdd52d92b 100644
--- a/src/libutil/namespaces.cc
+++ b/src/libutil/namespaces.cc
@@ -39,7 +39,12 @@ bool userNamespacesSupported()
_exit(res ? 1 : 0);
});
- return pid.wait() == 0;
+ bool supported = pid.wait() == 0;
+
+ if (!supported)
+ debug("user namespaces do not work on this system");
+
+ return supported;
}();
return res;
}
@@ -56,7 +61,12 @@ bool mountNamespacesSupported()
_exit(res ? 1 : 0);
});
- return pid.wait() == 0;
+ bool supported = pid.wait() == 0;
+
+ if (!supported)
+ debug("mount namespaces do not work on this system");
+
+ return supported;
}();
return res;
}