diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2013-02-16 14:42:43 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2013-02-16 14:42:43 +0000 |
commit | 974ab3dd887985e3aa347f3c6521f819296396a0 (patch) | |
tree | 802fb82c9f8ec8acd7a60fba7824c2df6f0073ad /src/chcon.c | |
parent | 8e7ba70eba02f88d4f3ba12e07ab9c7bdf32240a (diff) | |
download | coreutils-upstream/8.21.tar.gz |
Imported Upstream version 8.21upstream/8.21
Diffstat (limited to 'src/chcon.c')
-rw-r--r-- | src/chcon.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/chcon.c b/src/chcon.c index 34e92e41..56f2caa5 100644 --- a/src/chcon.c +++ b/src/chcon.c @@ -1,5 +1,5 @@ /* chcon -- change security context of files - Copyright (C) 2005-2012 Free Software Foundation, Inc. + Copyright (C) 2005-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -357,8 +357,10 @@ Usage: %s [OPTION]... CONTEXT FILE...\n\ fputs (_("\ Change the security context of each FILE to CONTEXT.\n\ With --reference, change the security context of each FILE to that of RFILE.\n\ -\n\ "), stdout); + + emit_mandatory_arg_note (); + fputs (_("\ --dereference affect the referent of each symbolic link (this is\n\ the default), rather than the symbolic link itself\n\ @@ -371,6 +373,10 @@ With --reference, change the security context of each FILE to that of RFILE.\n\ -l, --range=RANGE set range RANGE in the target security context\n\ "), stdout); fputs (_("\ + --no-preserve-root do not treat '/' specially (the default)\n\ + --preserve-root fail to operate recursively on '/'\n\ +"), stdout); + fputs (_("\ --reference=RFILE use RFILE's security context rather than specifying\n\ a CONTEXT value\n\ "), stdout); |