diff options
author | 2015-09-20 21:08:02 -0400 | |
---|---|---|
committer | 2015-09-27 02:21:29 -0400 | |
commit | d96587d02f203e2c40790ac1c0e5778c6299d1a2 (patch) | |
tree | 78da9c8d918050db452311093d59a56c39508fcb /etc | |
parent | libsbutil: add helpers for reading config options (w/out env export) (diff) | |
download | sandbox-d96587d02f203e2c40790ac1c0e5778c6299d1a2.tar.gz sandbox-d96587d02f203e2c40790ac1c0e5778c6299d1a2.tar.bz2 sandbox-d96587d02f203e2c40790ac1c0e5778c6299d1a2.zip |
sandbox: enable support for linux namespacesv2.9
This initial version doesn't enable their use by default.
URL: https://bugs.gentoo.org/512794
Reported-by: Matthew Thode <prometheanfire@gentoo.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/sandbox.conf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/etc/sandbox.conf b/etc/sandbox.conf index 1d7655c..5f09ee4 100644 --- a/etc/sandbox.conf +++ b/etc/sandbox.conf @@ -29,6 +29,26 @@ # +# Namespace Section (Linux-only) +# + +# Global knob to control all namespaces. +#NAMESPACES_ENABLE="no" + +# Knobs for different types of namespaces. If the runtime doesn't support a +# particular type, it will be automatically skipped. Default to off as these +# are currently experimental. +# For more details on each type, see the namespaces(7) manpage. +#NAMESPACE_IPC_ENABLE="no" +#NAMESPACE_MNT_ENABLE="no" +#NAMESPACE_NET_ENABLE="no" +#NAMESPACE_PID_ENABLE="no" +#NAMESPACE_SYSV_ENABLE="no" +#NAMESPACE_USER_ENABLE="no" +#NAMESPACE_UTS_ENABLE="no" + + +# # ACCESS Section # |