]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* coreutils.texi (install invocation): Use a= instead of 0 for
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 24 Apr 2005 04:46:33 +0000 (04:46 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 24 Apr 2005 04:46:33 +0000 (04:46 +0000)
the point of departure for -m, and explain what it meeams.
(mkdir invocation, mkfifo invocation, mknod invocation):
The umask does not affect the point of departure.

doc/ChangeLog
doc/coreutils.texi

index 08426b9b064b622ab89d25f072a779af8b6957c2..854a6e9b3e5ee38bd7045333ca5e7a879d3234d3 100644 (file)
@@ -1,3 +1,11 @@
+2005-04-23  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * coreutils.texi (install invocation): Use a= instead of 0 for
+       the point of departure for -m, and explain what it meeams.
+       (mkdir invocation, mkfifo invocation, mknod invocation):
+       The umask does not affect the point of departure.
+       Problem reported by Mike Stone.
+
 2005-04-11  Paul Eggert  <eggert@cs.ucla.edu>
 
        * coreutils.texi: For consistency, standardize on "user ID" rather
@@ -15,7 +23,7 @@
 
 2005-04-05  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * doc/coreutils.texi (cat invocation, chown invocation)
+       * coreutils.texi (cat invocation, chown invocation)
        (chgrp invocation, basename invocation, dirname invocation):
        Add examples, which are copies of the examples newly added
        to the usage messages.
index 27d70d0cfb077df5364acc7eec841be20324444e..986ce77458939f99092b83e5d4e6339b14fdf1b4 100644 (file)
@@ -7013,8 +7013,9 @@ may be either a group name or a numeric group ID.
 @cindex permissions of installed files, setting
 Set the permissions for the installed file or directory to @var{mode},
 which can be either an octal number, or a symbolic mode as in
-@command{chmod}, with 0 as the point of departure (@pxref{File
-permissions}).  The default mode is @samp{u=rwx,go=rx}---read, write,
+@command{chmod}, with @samp{a=} (no access allowed to anyone) as the
+point of departure (@pxref{File permissions}).
+The default mode is @samp{u=rwx,go=rx}---read, write,
 and execute for the owner, and read and execute for group and other.
 
 @item -o @var{owner}
@@ -7766,8 +7767,7 @@ The program accepts the following options.  Also see @ref{Common options}.
 @cindex modes of created directories, setting
 Set the mode of created directories to @var{mode}, which is symbolic as
 in @command{chmod} and uses @samp{a=rwx} (read, write and execute allowed for
-everyone) minus the bits set in the umask for the point of the
-departure.  @xref{File permissions}.
+everyone) for the point of the departure.  @xref{File permissions}.
 
 @item -p
 @itemx --parents
@@ -7819,8 +7819,8 @@ The program accepts the following option.  Also see @ref{Common options}.
 @opindex --mode
 @cindex modes of created FIFOs, setting
 Set the mode of created FIFOs to @var{mode}, which is symbolic as in
-@command{chmod} and uses @samp{a=rw} (read and write allowed for everyone) minus
-the bits set in the umask for the point of departure.  @xref{File permissions}.
+@command{chmod} and uses @samp{a=rw} (read and write allowed for everyone)
+for the point of departure.  @xref{File permissions}.
 
 @end table
 
@@ -7890,8 +7890,8 @@ The program accepts the following option.  Also see @ref{Common options}.
 @opindex -m
 @opindex --mode
 Set the mode of created files to @var{mode}, which is symbolic as in
-@command{chmod} and uses @samp{a=rw} minus the bits set in the umask as the point
-of departure.  @xref{File permissions}.
+@command{chmod} and uses @samp{a=rw} as the point of departure.
+@xref{File permissions}.
 
 @end table