mirror of
https://github.com/coreutils/coreutils.git
synced 2024-11-24 10:23:31 +08:00
* NEWS: Mention some of the SELinux changes.
Record release date and new version number. * src/stat.c (main): Adjust a comment.
This commit is contained in:
parent
e7c03171d1
commit
ab73462d4b
@ -1,5 +1,9 @@
|
||||
2007-12-01 Jim Meyering <meyering@redhat.com>
|
||||
|
||||
* NEWS: Record release date and new version number.
|
||||
Mention some of the SELinux changes.
|
||||
* src/stat.c (main): Adjust a comment.
|
||||
|
||||
* TODO: Add some entries (documentation needed),
|
||||
and remove the one for mktemp.
|
||||
|
||||
|
18
NEWS
18
NEWS
@ -1,14 +1,18 @@
|
||||
GNU coreutils NEWS -*- outline -*-
|
||||
|
||||
* Noteworthy changes in release 6.9+ (????-??-??) [stable]
|
||||
* Noteworthy changes in release 6.9.90 (2007-12-01) [beta]
|
||||
|
||||
** New programs
|
||||
|
||||
arch: equivalent to uname -m, not installed by default
|
||||
But don't install this program on Solaris systems.
|
||||
|
||||
chcon: change the SELinux security context of a file
|
||||
|
||||
mktemp: create a temporary file or directory (or names)
|
||||
|
||||
runcon: run a program in a different SELinux security context
|
||||
|
||||
** Programs no longer installed by default
|
||||
|
||||
hostname, su
|
||||
@ -27,7 +31,17 @@ GNU coreutils NEWS -*- outline -*-
|
||||
|
||||
** New features
|
||||
|
||||
Add SELinux support (FIXME: add details here)
|
||||
Add SELinux support, based on the patch from Fedora:
|
||||
* cp accepts new --preserve=context option.
|
||||
* "cp -a" works with SELinux:
|
||||
Now, cp -a attempts to preserve context, but failure to do so does
|
||||
not change cp's exit status. However "cp --preserve=context" is
|
||||
similar, but failure *does* cause cp to exit with nonzero status.
|
||||
* install accepts new "-Z, --context=C" option.
|
||||
* id accepts new "-Z" option.
|
||||
* stat honors the new %C format directive: SELinux security context string
|
||||
* ls accepts a slightly modified -Z option.
|
||||
* ls: contrary to Fedora version, does not accept --lcontext and --scontext
|
||||
|
||||
cp -p tries to preserve the GID of a file even if preserving the UID
|
||||
is not possible.
|
||||
|
@ -1040,7 +1040,7 @@ main (int argc, char *argv[])
|
||||
terse = true;
|
||||
break;
|
||||
|
||||
case 'Z': /* FIXME: remove in 2008, warn in 2007 */
|
||||
case 'Z': /* FIXME: remove in 2010, warn in mid 2008 */
|
||||
/* Ignored, for compatibility with distributions
|
||||
that implemented this before upstream. */
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user