diff options
author | Ghiunhan Mamut (aka V3n3RiX) <venerix@rogentos.ro> | 2016-04-05 17:26:20 +0000 |
---|---|---|
committer | Ghiunhan Mamut (aka V3n3RiX) <venerix@rogentos.ro> | 2016-04-05 17:26:20 +0000 |
commit | a8dce448298c7ed33bb260eefbe38fced3769e20 (patch) | |
tree | cc428410bc2f622c7cc30215a8e6d5424f94375f /app-emulation/docker/files/7179-add-audit_write-cap.patch | |
parent | 9a2f8110322c3c3b3beb6e16f1d5253da1f53e89 (diff) | |
parent | fc83dad4ca029bc14eec9abf3fda47d551e99453 (diff) |
Merge branch 'master' into 'master'
[docker] added docker to the repo. included support for our binary kernel and systemd
See merge request !3
Diffstat (limited to 'app-emulation/docker/files/7179-add-audit_write-cap.patch')
-rw-r--r-- | app-emulation/docker/files/7179-add-audit_write-cap.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/app-emulation/docker/files/7179-add-audit_write-cap.patch b/app-emulation/docker/files/7179-add-audit_write-cap.patch new file mode 100644 index 00000000..6263698c --- /dev/null +++ b/app-emulation/docker/files/7179-add-audit_write-cap.patch @@ -0,0 +1,29 @@ +From 29ecc95c31ecfe15e3b3d8db94cea1c555e526a3 Mon Sep 17 00:00:00 2001 +From: Alexandr Morozov <lk4d4math@gmail.com> +Date: Wed, 23 Jul 2014 09:57:41 +0400 +Subject: [PATCH] Add AUDIT_WRITE cap + +Fixes #6345 + +Thanks @larsks for outstanding investigation + +Docker-DCO-1.1-Signed-off-by: Alexandr Morozov <lk4d4math@gmail.com> (github: LK4D4) +--- + daemon/execdriver/native/template/default_template.go | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/daemon/execdriver/native/template/default_template.go b/daemon/execdriver/native/template/default_template.go +index cc5cc4f..be3dd5a 100644 +--- a/daemon/execdriver/native/template/default_template.go ++++ b/daemon/execdriver/native/template/default_template.go +@@ -23,6 +23,7 @@ func New() *libcontainer.Config { + "NET_BIND_SERVICE", + "SYS_CHROOT", + "KILL", ++ "AUDIT_WRITE", + }, + Namespaces: map[string]bool{ + "NEWNS": true, +-- +2.0.3 + |