From 663be9d677df9f18e710538979dead9af2cc579c Mon Sep 17 00:00:00 2001 From: Mrunal Patel Date: Tue, 8 Sep 2015 12:57:19 -0400 Subject: [PATCH] Modify the capabilities constants to match header files like other constants Signed-off-by: Mrunal Patel --- config-linux.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config-linux.md b/config-linux.md index 8d4873f1120..0b642383751 100644 --- a/config-linux.md +++ b/config-linux.md @@ -6,13 +6,13 @@ Additional information is needed for Linux over the [default spec configuration] ## Capabilities Capabilities is an array that specifies Linux capabilities that can be provided to the process inside the container. -Valid values are the string after `CAP_` for capabilities defined in [the man page](http://man7.org/linux/man-pages/man7/capabilities.7.html). +Valid values are the strings for capabilities defined in [the man page](http://man7.org/linux/man-pages/man7/capabilities.7.html) ```json "capabilities": [ - "AUDIT_WRITE", - "KILL", - "NET_BIND_SERVICE" + "CAP_AUDIT_WRITE", + "CAP_KILL", + "CAP_NET_BIND_SERVICE" ] ```