fix semanage fcontext help message
the ftype options were incorrect
This commit is contained in:
parent
2907caa33c
commit
1e605e9905
|
@ -384,11 +384,11 @@ def handleFcontext(args):
|
||||||
def setupFcontextParser(subparsers):
|
def setupFcontextParser(subparsers):
|
||||||
ftype_help = '''
|
ftype_help = '''
|
||||||
File Type. This is used with fcontext. Requires a file type
|
File Type. This is used with fcontext. Requires a file type
|
||||||
as shown in the mode field by ls, e.g. use -d to match only
|
as shown in the mode field by ls, e.g. use d to match only
|
||||||
directories or -- to match only regular files. The following
|
directories or f to match only regular files. The following
|
||||||
file type options can be passed:
|
file type options can be passed:
|
||||||
-- (regular file),-d (directory),-c (character device),
|
f (regular file),d (directory),c (character device),
|
||||||
-b (block device),-s (socket),-l (symbolic link),-p (named pipe)
|
b (block device),s (socket),l (symbolic link),p (named pipe)
|
||||||
If you do not specify a file type, the file type will default to "all files".
|
If you do not specify a file type, the file type will default to "all files".
|
||||||
'''
|
'''
|
||||||
generate_usage = generate_custom_usage(usage_fcontext, usage_fcontext_dict)
|
generate_usage = generate_custom_usage(usage_fcontext, usage_fcontext_dict)
|
||||||
|
|
Loading…
Reference in New Issue