aboutsummaryrefslogtreecommitdiff
path: root/selinux/runcon.c
diff options
context:
space:
mode:
Diffstat (limited to 'selinux/runcon.c')
-rw-r--r--selinux/runcon.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/selinux/runcon.c b/selinux/runcon.c
index 54349b25c..f0b21269f 100644
--- a/selinux/runcon.c
+++ b/selinux/runcon.c
@@ -28,6 +28,28 @@
28 * 28 *
29 * Licensed under GPLv2, see file LICENSE in this source tree. 29 * Licensed under GPLv2, see file LICENSE in this source tree.
30 */ 30 */
31
32//usage:#define runcon_trivial_usage
33//usage: "[-c] [-u USER] [-r ROLE] [-t TYPE] [-l RANGE] PROG ARGS\n"
34//usage: "runcon CONTEXT PROG ARGS"
35//usage:#define runcon_full_usage "\n\n"
36//usage: "Run PROG in a different security context\n"
37//usage: "\n CONTEXT Complete security context\n"
38//usage: IF_FEATURE_RUNCON_LONG_OPTIONS(
39//usage: "\n -c,--compute Compute process transition context before modifying"
40//usage: "\n -t,--type=TYPE Type (for same role as parent)"
41//usage: "\n -u,--user=USER User identity"
42//usage: "\n -r,--role=ROLE Role"
43//usage: "\n -l,--range=RNG Levelrange"
44//usage: )
45//usage: IF_NOT_FEATURE_RUNCON_LONG_OPTIONS(
46//usage: "\n -c Compute process transition context before modifying"
47//usage: "\n -t TYPE Type (for same role as parent)"
48//usage: "\n -u USER User identity"
49//usage: "\n -r ROLE Role"
50//usage: "\n -l RNG Levelrange"
51//usage: )
52
31#include <getopt.h> 53#include <getopt.h>
32#include <selinux/context.h> 54#include <selinux/context.h>
33#include <selinux/flask.h> 55#include <selinux/flask.h>