-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.bash
More file actions
28 lines (22 loc) · 790 Bytes
/
Copy pathconfig.bash
File metadata and controls
28 lines (22 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# list of namespaces to use
#NAMESPACES=( uts ipc cgroup )
# the paths to bind mount from the host
# this is a bash associative array, the key is the path on the host, the
# value is the path in the chroot (blank means the same as the host) then
# a colon and any mount options to pass
# this *replaces* the default list
#DEFAULT_MOUNTS=(
# [/proc]=':rbind'
# [/sys]=':rbind'
# [/dev]=':rbind'
#)
# extra paths to bind mount from the host, these are added to the default list
#EXTRA_MOUNTS=(
#)
# paths to mount tmpfs within the mount namespace
#TMPFS_MOUNTS=( /tmp /run )
# the control group controllers to enable (if supported)
# defaults to none, below is an example
#CGROUP_CONTROLLERS=( cpu blkio cpuacct memory )
# name of the control group to use
#CGROUP_NAME="chroot-wrapper"