diff options
author | Aurelien Aptel <aaptel@suse.com> | 2017-09-29 16:03:03 +0200 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2017-10-03 06:32:08 -0400 |
commit | d999610bf985f19fcc1984be95f11da7a3e88533 (patch) | |
tree | c93b2baeb09842266ba79f1d99f4a0943cde7fbd /setcifsacl.1.in | |
parent | 48d88f946e72a3a8618498524e61f9053bb565f4 (diff) | |
download | cifs-utils-d999610bf985f19fcc1984be95f11da7a3e88533.tar.gz cifs-utils-d999610bf985f19fcc1984be95f11da7a3e88533.tar.bz2 cifs-utils-d999610bf985f19fcc1984be95f11da7a3e88533.zip |
man: generate all man pages from POD files when buidling
Move all man pages to easily editable POD files and generate troff
source when building.
Previous .in troff file are still preprocessed before final generation
to use configured path (.pod.in -> .pod -> troff). All temporary
files (.pod.in and troff sources) are properly deleted on clean.
Remove all troff file, no need to keep generated copies under source
control.
This commit does not change the content of the man pages but makes
future editing easier.
Adds a new --enable-man/--disable-man configure option to control the
generation and installation of man pages. The option is automatically
enabled if the system supports it. Explicitly enabling it will make the
configure script fail if pod2man is not installed.
Signed-off-by: Aurelien Aptel <aaptel@suse.com>
Diffstat (limited to 'setcifsacl.1.in')
-rw-r--r-- | setcifsacl.1.in | 113 |
1 files changed, 0 insertions, 113 deletions
diff --git a/setcifsacl.1.in b/setcifsacl.1.in deleted file mode 100644 index d53a6ec..0000000 --- a/setcifsacl.1.in +++ /dev/null @@ -1,113 +0,0 @@ -'\" t -.\" Title: cifs.idmap -.\" Author: [see the "AUTHOR" section] -.\" Generator: DocBook XSL Stylesheets v1.75.2 <http://docbook.sf.net/> -.\" Date: 08/19/2011 -.\" Manual: System Administration tools -.\" Source: cifs-utils 4.0 -.\" Language: English -.\" -.TH "SETCIFSACL" "1" "08/19/2011" "cifs-utils" "CIFS Access Control List Tools" -.\" ----------------------------------------------------------------- -.\" * set default formatting -.\" ----------------------------------------------------------------- -.\" disable hyphenation -.nh -.\" disable justification (adjust text to left margin only) -.ad l -.\" ----------------------------------------------------------------- -.\" * MAIN CONTENT STARTS HERE * -.\" ----------------------------------------------------------------- -.SH "NAME" -setcifsacl \- Userspace helper to alter an ACL in a security descriptor for Common Internet File System (CIFS) -.SH "SYNOPSIS" -.HP \w'\ 'u -setcifsacl [\-v|\-a|\-D|\-M|\-S] "{one or more ACEs}" {file system object} -.SH "DESCRIPTION" -.PP -This tool is part of the cifs-utils suite\&. -.PP -setcifsacl is a userspace helper program for the Linux CIFS client file system. It is intended to alter an ACL of a security descriptor for a file system object. -Whether a security descriptor to be set is applied or not is determined by the CIFS/SMB server. -.PP -This program uses a plugin to handle the mapping of user and group names to SIDs. \fB@pluginpath@\fR should be a symlink that points to the correct plugin to use. -.SH "OPTIONS" -.PP --h -.RS 4 -Print usage message and exit. -.RE -\-v -.RS 4 -Print version number and exit\&. -.RE -\-a -.RS 4 -Add one or more ACEs to an ACL of a security descriptor. -An ACE is added even if the same ACE exists in the ACL. -.RE -\-D -.RS 4 -Delete one or more ACEs from an ACL of a security descriptor. -Entire ACE has to match in an existing ACL for the listed ACEs to be deleted. -.RE -\-M -.RS 4 -Modify one or more ACEs from an ACL of a security descriptor. -SID and type are used to match for existing ACEs to be modified with the list of ACEs specified. -.RE -\-S -.RS 4 -Set an ACL of security descriptor with the list of ACEs -Existing ACL is replaced entirely with the specified ACEs. -.RE -.PP -Every ACE entry starts with "ACL:" -One or more ACEs are specified within double quotes. -Multiple ACEs are separated by a comma. -.PP -Following fields of an ACE can be modified with possible values: -.PP -SID: Either a name or a raw SID value. -.PP -type: ALLOWED (0x0), DENIED (0x1), OBJECT_ALLOWED (0x5), OBJECT_DENIED (0x6) -.PP -flags: OBJECT_INHERIT_FLAG (OI or 0x1), CONTAINER_INHERIT_FLAG (CI or 0x2), NO_PROPAGATE_INHERIT_FLAG (NI or 0x4), INHERIT_ONLY_FLAG (IO or 0x8), INHERITED_ACE_FLAG (IA or 0x10) or a combination/OR of these values. -.PP -mask: Either one of FULL, CHANGE, READ, a combination of R W X D P O, or a hex value -.SH "EXAMPLES" -.PP -Add an ACE -.br -setcifsacl -a "ACL:CIFSTESTDOM\\user2:DENIED/0x1/D" <file_name> -setcifsacl -a "ACL:CIFSTESTDOM\\user1:ALLOWED/OI|CI|NI/D" <file_name> -.PP -Delete an ACE -.br -setcifsacl -D "ACL:S-1-1-0:0x1/OI/0x1201ff" <file_name> -.PP -Modify an ACE -.br -setcifsacl -M "ACL:CIFSTESTDOM\\user1:ALLOWED/0x1f/CHANGE" <file_name> -.PP -Set an ACL -.br -setcifsacl -S "ACL:CIFSTESTDOM\\Administrator:0x0/0x0/FULL, -.br -ACL:CIFSTESTDOM\\user2:0x0/0x0/FULL" <file_name> -.PP -.SH "NOTES" -.PP -Kernel support for getcifsacl/setcifsacl utilities was initially introduced in the 2.6.37 kernel. -.SH "SEE ALSO" -.PP -\fBmount.cifs\fR(8), -\fBgetcifsacl\fR(1) -.PP -.SH "AUTHOR" -.PP -Shirish Pargaonkar wrote the setcifsacl program\&. -.PP -The -Linux CIFS Mailing list -is the preferred place to ask questions regarding these programs\&. |