diff options
author | John Crispin <john@openwrt.org> | 2015-12-11 15:08:19 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-12-11 15:08:19 +0000 |
commit | 32b37600b921608e5d534b971dd62732ffc6325e (patch) | |
tree | c0a90b41611986e3f580df7f3f3089d74517971f | |
parent | 8d9ffbec2e6b87573959c1b214ace44eb9b864aa (diff) | |
download | upstream-32b37600b921608e5d534b971dd62732ffc6325e.tar.gz upstream-32b37600b921608e5d534b971dd62732ffc6325e.tar.bz2 upstream-32b37600b921608e5d534b971dd62732ffc6325e.zip |
procd: update procd.sh to support new ujail options
Signed-off-by: Etienne CHAMPETIER <champetier.etienne@gmail.com>
SVN-Revision: 47862
-rw-r--r-- | package/system/procd/files/procd.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/system/procd/files/procd.sh b/package/system/procd/files/procd.sh index e83e75cb34..a2a63f8cd5 100644 --- a/package/system/procd/files/procd.sh +++ b/package/system/procd/files/procd.sh @@ -126,7 +126,6 @@ _procd_open_validate() { _procd_add_jail() { json_add_object "jail" json_add_string name "$1" - json_add_string root "/tmp/.jail/$1" shift @@ -136,6 +135,7 @@ _procd_add_jail() { ubus) json_add_boolean "ubus" "1";; procfs) json_add_boolean "procfs" "1";; sysfs) json_add_boolean "sysfs" "1";; + ronly) json_add_boolean "ronly" "1";; esac done json_add_object "mount" @@ -195,10 +195,10 @@ _procd_set_param() { nice) json_add_int "$type" "$1" ;; - user|seccomp) + user|seccomp|capabilities) json_add_string "$type" "$1" ;; - stdout|stderr) + stdout|stderr|no_new_privs) json_add_boolean "$type" "$1" ;; esac |