1 .\" Copyright (c) 1988, 1990, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)chpass.1 8.2 (Berkeley) 12/30/93
38 .Nm chpass, chfn, chsh, ypchpass, ypchfn, ypchsh
39 .Nd add or change user database information
50 allows editing of the user database information associated
53 or, by default, the current user.
54 The information is formatted and supplied to an editor for changes.
56 Only the information that the user is allowed to change is displayed.
58 The options are as follows:
61 The super-user is allowed to directly supply a user database
62 entry, in the format specified by
65 This argument must be a colon (``:'') separated list of all the
66 user database fields, although they may be empty.
68 The super-user is allowed to directly supply an encrypted password field,
75 option attempts to change the user's shell to
79 Possible display items are as follows:
81 .Bl -tag -width "Home Directory:" -compact -offset indent
85 user's encrypted password
93 account expiration time
95 user's general classification
103 user's normal location
112 field is the user name used to access the computer account.
116 field contains the encrypted form of the user's password.
120 field is the number associated with the
123 Both of these fields should be unique across the system (and often
124 across a group of systems) as they control file access.
126 While it is possible to have multiple entries with identical login names
127 and/or identical user id's, it is usually a mistake to do so. Routines
128 that manipulate these files will often return only one of the multiple
129 entries, and that one by random selection.
133 field is the group that the user will be placed in at login.
134 Since BSD supports multiple groups (see
136 this field currently has little special meaning.
137 This field may be filled in with either a number or a group name (see
142 field is the date by which the password must be changed.
146 field is the date on which the account expires.
152 fields should be entered in the form ``month day year'' where
154 is the month name (the first three characters are sufficient),
156 is the day of the month, and
162 field is currently unused. In the near future it will be a key to
165 style database of user attributes.
169 is the full UNIX path name where the user
170 will be placed at login.
174 field is the command interpreter the user prefers.
177 field is empty, the Bourne shell,
180 When altering a login shell, and not the super-user, the user
181 may not change from a non-standard shell or to a non-standard
183 Non-standard is defined as a shell not found in
186 The last four fields are for storing the user's
187 .Ar full name , office location ,
194 Once the information has been verified,
198 to update the user database.
202 editor will be used unless the environment variable EDITOR is set to
204 When the editor terminates, the information is re-read and used to
205 update the user database itself.
206 Only the user, or the super-user, may edit the information associated
210 can also be used in conjunction with NIS, however some restrictions
214 can only make changes to the NIS passwd maps through
216 which only permits changes to a user's password, shell and gecos
217 fields. It can not be used to change other user information or to
218 add new records to the NIS passwd maps. (Doing that would require
219 something such as ypupdated, which is not yet supported.)
222 requires password authentication before it will make any
223 changes, even if it receives a request from the super-user.
225 As a result, the following restrictions apply when
228 .Bl -enum -offset indent
230 .Pa Only the shell and gecos information may be changed.
232 fields are restricted, even when
234 is invoked by the super-user, because the
236 daemon has no support for updating them. While support for
237 changing other fields could be added, this would lead to
238 compatibility problems with other NIS-capable systems.
239 Even though the super-user may supply data for other fields
240 while editing an entry, the extra information (other than the
241 password -- see below) will be silently discarded.
243 .Pa Password authentication is required.
245 will prompt for the user's NIS password before effecting
246 any changes. If the password is invalid, all changes will be
249 .Pa Adding new records to the local
250 .Pa password database is discouraged.
252 will allow the administrator to add new records to the
253 local password database while NIS is enabled, but this can lead to
254 some confusion since the new records are appended to the end of
255 the master password file, usually after the special NIS '+' entries.
256 The administrator should use
258 to modify the local password
259 file when NIS is running.
261 .Pa Password changes are not permitted.
266 to change their NIS passwords. The super-user is allowed to specify
267 a new password (even though the ``Password:'' field does not show
268 up in the editor template, the super-user may add it back by hand),
269 but even the super-user must supply the user's original password
272 will refuse to update the NIS maps.
275 There are also two extra option flags that are available when
277 is compiles with NIS support:
284 to modify the local copy of a user's password
285 information in the even that a user exists in both
286 the local and NIS databases.
288 This flag has the opposite effect of
290 This flag is largely redundant since
292 operates on NIS entries by default if NIS is enabled.
296 .Bl -tag -width /etc/master.passwd -compact
297 .It Pa /etc/master.passwd
300 A Version 7 format password file
301 .It Pa /etc/chpass.XXXXXX
302 Temporary copy of the password file
304 The list of approved shells
318 .%T "UNIX Password security"
328 commands are really only links to
331 User information should (and eventually will) be stored elsewhere.