summaryrefslogtreecommitdiffstats
path: root/usr.sbin/pw
Commit message (Collapse)AuthorAgeFilesLines
* The .Nm utilitycharnier2002-07-141-22/+45
|
* de-__P()alfred2002-07-113-51/+51
|
* Lists follow a colon, not a semicolon.dd2002-06-301-1/+1
|
* `pw useradd' could be used with -w without -D option.sada2002-06-261-0/+1
| | | | | | PR: docs/39770 Submitted by: sada Approved by: dd
* Print a long with %ld not %d. (We possibly should be using %j here, butdwmalone2002-06-241-1/+1
| | | | | | | | that can be fixed when the many other warnings here are being fixed.) PR: 39741 Submitted by: Dan Lukes <dan@obluda.cz> MFC after: 1 week
* In the words of the submitter:dd2002-04-051-1/+5
| | | | | | | | | This patch explains -F for usershow and groupshow. Because "groupmod ... -F" doesn't do anything, the patch also drops that from groupmod's command line args. PR: 35955 Submitted by: Mike DeGraw-Bertsch <mbertsch@radioactivedata.org>
* Document the -7 option for usershow.dd2002-04-051-0/+9
| | | | | PR: 36735 Submitted by: Mike DeGraw-Bertsch <mbertsch@radioactivedata.org>
* Merge a duplicate description of the -L option into the first one.keramida2002-03-081-10/+2
| | | | | PR: docs/34782 MFC after: 1 week
* Use correct mode for temporary file.nectar2001-12-201-1/+1
| | | | Reported by: ryan beasley <ryanb@goddamnbastard.org>
* Change rmskey() to rmopie() - we don't have skey anymoreache2001-10-191-6/+6
|
* For new users, create the home directory before sending the welcomedd2001-09-031-24/+24
| | | | | | | | mail, if configured to do so. Some sites have setups where the user's mail is delivered to their home directory, so sending mail before is exists didn't work. PR: 29892
* Unbreak group operations by reverting previous delta which removed thedd2001-08-301-1/+1
| | | | | | | | assignment of `l' in `gr_update' to the return value of snprintf. It claimed to have fixed the case where snprintf returned -1--in fact, it broke the entire routine. Not setting `l' here causes fileupdate() to invariably fail with EINVAL because it does its own check to assert that the parameter isn't -1.
* Properly initialize the random number generator in pw_getpass().joerg2001-08-211-0/+1
| | | | | | | Right now, the automatically generated passwords have been rather predictable. :-( MFC after: 1 day
* Fix a typo in a variable name that made pw(8) coredump when usingjoerg2001-08-211-1/+1
| | | | | | USE_MD5RAND. MFC after: 2 days
* Handle snprintf() returning < 0 (not just -1)brian2001-08-202-3/+3
| | | | MFC after: 2 weeks
* Handle snprintf() returning -1.brian2001-08-203-1/+7
| | | | MFC after: 2 weeks
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-201-3/+1
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Remove GCC'isms in CFLAGS.obrien2001-07-201-1/+0
|
* Remove whitespace at EOL.dd2001-07-152-28/+28
|
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-092-4/+0
|
* Fix the type of the NULL arg to execl()brian2001-07-091-1/+1
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* Don't override the default BINMODE.ru2001-07-051-2/+0
| | | | Submitted by: bde
* Fix a harmless format string bogon and mark a function as __printflike().kris2001-07-052-2/+2
| | | | | | | There is still one instance of non-constant format string use inside that function, but it's hard to fix. MFC after: 1 week
* Include missing header files which define functions for which gcc hasdd2001-06-241-0/+1
| | | | builtints (e.g., exit, strcmp).
* CND has been unused for two years, and RND has been unused for fivedd2001-06-191-1/+1
| | | | | | | years; remove them from CFLAGS. PR: 23712 Submitted by: Volker Stolz <stolz@i2.informatik.rwth-aachen.de>
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-3/+1
| | | | - MAN[1-9] -> MAN.
* Use %c for expire/change datesache2001-03-211-2/+2
|
* mdoc(7) police: simplify bogus ``.Ql Fl'' constructs.ru2001-03-161-33/+33
|
* Document the lock and unlock commands. This fixes a segmentation fault.dd2001-03-141-0/+10
| | | | | PR: 25187 Approved by: nik
* Document the lock and unlock commands.dd2001-03-141-0/+32
| | | | | PR: 25187 Approved by: nik
* Switch from using rand() or random() to a stronger, more appropriate PRNGkris2001-03-051-19/+2
| | | | | | (random() or arc4random()) Reviewed by: bde
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-4/+8
|
* Prepare for mdoc(7)NG.ru2001-01-161-1/+1
|
* Fix typo: s/memberhip/membership/peter2001-01-021-1/+1
| | | | Submitted by: Peter Avalos <pavalos@theshell.com>
* Convert to use the <sys/queue.h> macros rather than fiddling with the queueben2000-12-292-4/+4
| | | | | | structure internals. Reviewed by: markm
* Make the comment generated in /etc/pw.conf match realitydougb2000-12-181-1/+1
| | | | | PR: misc/23451 Submitted by: Ben Rosengart, ben@narcissus.net
* Add `_PATH_DEVZERO'.obrien2000-12-091-1/+1
| | | | Use _PATH_* where where possible.
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-15/+15
|
* Add working and easy crypt(3)-switching. Yes, we need a whole new APIgreen2000-08-222-3/+22
| | | | | | | | | | | | | | for crypt(3) by now. In any case: Add crypt_set_format(3) + documentation to -lcrypt. Add login_setcryptfmt(3) + documentation to -lutil. Support for switching crypt formats in passwd(8). Support for switching crypt formats in pw(8). The simple synopsis is: edit login.conf; add a passwd_format field set to "des" or "md5"; go nuts :) Reviewed by: peter
* Move test for -w flag outside of the code dealing with -D (defaults).davidn2000-07-201-2/+2
| | | | | | | This should cause -w's argument not to be ignored in the usermod case, so it will affect modification of the user's password instead of using the pw.conf (or internal default=no '*') password method. PR: bin/11168
* Allow -g with an empty argument in the -D case. This allows -g "" to setdavidn2000-07-201-5/+8
| | | | | no default group (and thus fall back to user-based groups instead). PR: bin/5717
* Fix another missed case where usermod would not set the "modified" flag:davidn2000-07-201-3/+6
| | | | | | -h - to set no password. But only mark modified if the account is not already locked (i.e. first char of crypt password field is '*'). PR: bin/19999
* Catch up to the fact that we now have tcsh in the tree.davidn2000-07-161-1/+2
|
* Support propogation of file flags when building a homedir from thedavidn2000-07-131-6/+17
| | | | | | | skeleton directory. sprintf() -> snprintf() cleanup. PR: bin/8756 Submitted by: "Nickolay N. Dudorov" <nnd@itfs.nsk.su>
* Fix breakage introduced by bypassing update for additional 'mod'davidn2000-07-031-0/+1
| | | | | | | functionality when nothing had actually changed; -d changes would not set the 'something had changed flag'. Actually test for a change in homedir. PR: bin/19649
* Don't dereference NULL in the userdel case.davidn2000-06-261-1/+1
|
* Localize ctype too.ache2000-06-242-3/+3
| | | | Add weekday to showuser expired fields
* Localize time/date.ache2000-06-225-23/+27
| | | | | Use ISO 8601 date in logs. Fix wrong argument type in ctype functions.
* Fix obvious braino in assignment statement. usermod -g should work again.davidn2000-06-181-1/+1
| | | | | PR: 17877 Submitted by: pius@zyan.com
* Be a little more strict about handling command line args. This allows user anddavidn2000-06-181-4/+6
| | | | | | group names like 'help' 'mod' 'user' 'group' etc. to work correctly without requiring the -n style invocation. PR: misc/17069
OpenPOWER on IntegriCloud