summaryrefslogtreecommitdiffhomepage
path: root/runsc/specutils
diff options
context:
space:
mode:
authorFabricio Voznika <fvoznika@google.com>2018-05-04 09:38:35 -0700
committerShentubot <shentubot@google.com>2018-05-04 09:39:28 -0700
commitc90fefc1161c58af34856aff7b7012f19f5d1f1b (patch)
treeba362b570d0d8e7cf57c40c80179cbbf2b7144bb /runsc/specutils
parent7e82550bf7a383d0aa3b3c4c8107bc32816ca5d5 (diff)
Fix runsc capabilities
There was a typo and one new capability missing from the list PiperOrigin-RevId: 195427713 Change-Id: I6d9e1c6e77b48fe85ef10d9f54c70c8a7271f6e7
Diffstat (limited to 'runsc/specutils')
-rw-r--r--runsc/specutils/specutils.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/runsc/specutils/specutils.go b/runsc/specutils/specutils.go
index 04ecb6ae3..dcb4b20db 100644
--- a/runsc/specutils/specutils.go
+++ b/runsc/specutils/specutils.go
@@ -129,7 +129,7 @@ var capFromName = map[string]linux.Capability{
"CAP_SETPCAP": linux.CAP_SETPCAP,
"CAP_LINUX_IMMUTABLE": linux.CAP_LINUX_IMMUTABLE,
"CAP_NET_BIND_SERVICE": linux.CAP_NET_BIND_SERVICE,
- "CAP_NET_BROAD_CAST": linux.CAP_NET_BROAD_CAST,
+ "CAP_NET_BROADCAST": linux.CAP_NET_BROADCAST,
"CAP_NET_ADMIN": linux.CAP_NET_ADMIN,
"CAP_NET_RAW": linux.CAP_NET_RAW,
"CAP_IPC_LOCK": linux.CAP_IPC_LOCK,
@@ -155,6 +155,7 @@ var capFromName = map[string]linux.Capability{
"CAP_SYSLOG": linux.CAP_SYSLOG,
"CAP_WAKE_ALARM": linux.CAP_WAKE_ALARM,
"CAP_BLOCK_SUSPEND": linux.CAP_BLOCK_SUSPEND,
+ "CAP_AUDIT_READ": linux.CAP_AUDIT_READ,
}
func capsFromNames(names []string) (auth.CapabilitySet, error) {