aboutsummaryrefslogtreecommitdiff
path: root/selinux/runcon.c
diff options
context:
space:
mode:
authorPere Orga <gotrunks@gmail.com>2011-04-11 03:29:49 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2011-04-11 03:29:49 +0200
commit5bc8c005a8e15c43285bc595a8d404de67a482ac (patch)
tree98f2d35d1db26f4d8cba5f095ff63bf8e2e8d980 /selinux/runcon.c
parent73ef15cf3894716c1393ed21dee6e6bb2cdbc90f (diff)
downloadbusybox-w32-5bc8c005a8e15c43285bc595a8d404de67a482ac.tar.gz
busybox-w32-5bc8c005a8e15c43285bc595a8d404de67a482ac.tar.bz2
busybox-w32-5bc8c005a8e15c43285bc595a8d404de67a482ac.zip
move remaining help text from include/usage.src.h
Signed-off-by: Pere Orga <gotrunks@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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>