blob: 9a4066936e17db0b4ffc0fa8ff34a0c9f06bb559 [file] [log] [blame]
Nick Kralevich1d1011a2012-09-06 10:14:03 -07001.TH "CAPNG_UPDATE" "3" "June 2009" "Red Hat" "Libcap-ng API"
2.SH NAME
3capng_update \- update the stored capabilities settings
4.SH "SYNOPSIS"
5.B #include <cap-ng.h>
6.sp
7int capng_update(capng_act_t action, capng_type_t type,unsigned int capability);
8
9.SH "DESCRIPTION"
10
11capng_update will update the internal posix capabilities settings based on the options passed to it. The action should be eith CAPNG_DROP to set the capability bit to 0, or CAPNG_ADD to set the capability bit to 1. The operation is performed on the capability set specified in the type parameter. The values are: CAPNG_EFFECTIVE, CAPNG_PERMITTED, CAPNG_INHERITABLE, CAPNG_BOUNDING_SET. The values may be or'ed together to perform the same operation on multiple sets. The last paramter, capability, is the capability define as given in linux/capability.h.
12
13.SH "RETURN VALUE"
14
15This returns 0 on success and -1 on failure.
16
17.SH "SEE ALSO"
18
19.BR capng_updatev (3),
20.BR capabilities (7)
21
22.SH AUTHOR
23Steve Grubb