diff options
author | Kamil Dudka <kdudka@redhat.com> | 2016-07-08 18:59:35 +0200 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2016-07-08 18:40:23 +0100 |
commit | 502518b44039138d148e2e15157d125c82d02af0 (patch) | |
tree | eb58a064b254bf46526c372059c88d334778c8f3 /doc | |
parent | 54c1397510cb08433680b5b7da46a8201770e9ee (diff) | |
download | coreutils-502518b44039138d148e2e15157d125c82d02af0.tar.xz |
install: with -Z, set default SELinux context for created directories
* doc/coreutils.texi (install invocation): Update -Z documentation.
* src/install.c (make_ancestor): Set default security context before
calling mkdir() if the -Z option is given.
(process_dir): Call restorecon() on the destination directory if the
-Z option is given.
(usage): Update -Z documentation.
* tests/install/install-Z-selinux.sh: A new test for 'install -Z -D'
and 'install -Z -d' based on tests/mkdir/restorecon.sh.
* tests/local.mk: Reference the test.
* NEWS: Mention the improvement.
Reported at https://bugzilla.redhat.com/1339135
Fixes http://bugs.gnu.org/23868
Diffstat (limited to 'doc')
-rw-r--r-- | doc/coreutils.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 47c63db79..914aec725 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -9217,7 +9217,7 @@ Print the name of each file before moving it. @cindex security context This option functions similarly to the @command{restorecon} command, by adjusting the SELinux security context according -to the system default type for destination files. +to the system default type for destination files and each created directory. @end table |