diff options
author | Daniel Golle <daniel@makrotopia.org> | 2020-04-13 03:19:01 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-05-15 19:19:32 +0100 |
commit | 8097fd4d5f7f0e995db2a80aca03d8258907f85b (patch) | |
tree | debe0e951b91638f0bc9501b47936915aa39fc3c /package/system/procd/files | |
parent | 2f7118712e383661853bfd26d18bb4c71554287b (diff) | |
download | upstream-8097fd4d5f7f0e995db2a80aca03d8258907f85b.tar.gz upstream-8097fd4d5f7f0e995db2a80aca03d8258907f85b.tar.bz2 upstream-8097fd4d5f7f0e995db2a80aca03d8258907f85b.zip |
procd: jail: fix segfault and add console feature
2e73848 jail: SIGSEGV must not be forwarded to the child process
7e150f6 jail: unnamed jails can not have netns (fix segfault)
1ab539b jail: add option to provide /dev/console to containers
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'package/system/procd/files')
-rw-r--r-- | package/system/procd/files/procd.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/system/procd/files/procd.sh b/package/system/procd/files/procd.sh index b8605396e9..dd6dc1c58d 100644 --- a/package/system/procd/files/procd.sh +++ b/package/system/procd/files/procd.sh @@ -198,6 +198,7 @@ _procd_add_jail() { netns) json_add_boolean "netns" "1";; userns) json_add_boolean "userns" "1";; cgroupsns) json_add_boolean "cgroupsns" "1";; + console) json_add_boolean "console" "1";; esac done json_add_object "mount" |