summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2003-06-12another UCB term 3 removalTheo de Raadt
2003-06-12Terms 3 and 4 have been removed from sbin/isakmpd/x509.c so theyTodd C. Miller
can go away here too.
2003-06-11some ansification, some de-registerTheo de Raadt
2003-06-11support for NAT-T (draft-ietf-ipsec-udp-encaps-06.txt); ok deraadt@Markus Friedl
2003-06-11mdoc version of pppd(8);Jason McIntyre
sanity checked and help from pjantzen@
2003-06-10Rework script using advanced coding techniques like a case statement,Kenneth R Westerback
factoring out common code to functions, consistant indenting, etc. Should be no semantic changes, just much easier to read, except for ensuring that certain cable companies no longer confuse the issue by supplying name server addresses without a domain name. Either will now result in the creation of an appropriate resolv.conf Inspired by PRs #2969 from Alexander Taler and #3135 from Jan Johansson. Fixes #3135 completely according to Jan. #2969 may have another item to fix. Tested by various, including tech@'ers Jan Johansson, Uwe A. P. Wuerdinger and Jim Rees. Let the flood of enhancements begin now that it can actually be read and understood ... ok deraadt@.
2003-06-10Add login class support; based on a diff from Peter WernerTodd C. Miller
2003-06-10Check that login class exists before using it; based on a patch fromTodd C. Miller
Peter Werner. Closes PR 2699.
2003-06-10o Check for fwrite() error with != 1, not <= 0 (mostly style)Todd C. Miller
o Correct some error messages o More informative error when reading a line that is > LINE_MAX o When saving password, only alloc space for what is used
2003-06-10Keep a table of password types, and their associated lengths, andTodd C. Miller
check in useradd or usermod whether the given encrypted password has the correct length. Factor out time code into a function, scantime() Perform ctype(3) operations on unsigned chars. From NetBSD (agc)
2003-06-10Use syslog(3) to log new users and groups, deletions of users and groups,Todd C. Miller
and modification of user and group information. Syslog priority is LOG_INFO, facility is LOG_USER (there is no need to do this via LOG_AUTH, since the password and group files are world readable). From NetBSD (agc)
2003-06-10Catch illegal flags and reply with usage; from NetBSD (agc)Todd C. Miller
2003-06-10o rename login variable to login_nameTodd C. Miller
o remove user from supplementary groups when deleting a user and not preserving information. o add some const o check that user/group is local (not YP) before trying to change it. From NetBSD (agc)
2003-06-10- removed obsolete section about rc.wscons and wscons.conf;Jason McIntyre
from Wouter Clarie - thanks!
2003-06-09missing copyright, found by deraadt@;Jason McIntyre
2003-06-09Fix my previous commit here, pwd_mkdb needs to be a list now too.Todd C. Miller
2003-06-08Sync man pages w/ NetBSD versionTodd C. Miller
2003-06-08Add usermgmt.conf man page. From NetBSD (grant)Todd C. Miller
2003-06-08user -e and -f now accepts "month day year" (ala chpass(1)) andTodd C. Miller
seconds-since-epoch. From NetBSD (grant).
2003-06-08Make c_word const; from NetBSD (tron)Todd C. Miller
2003-06-08Sanity check username length and convert to ANSI function headers.Todd C. Miller
2003-06-08Instead of splitting a flat string into a list for system(), justTodd C. Miller
pass it a list in the first place. Also fix up some spacing.
2003-06-08Add check for group too long and made an invalid group a fatal errorTodd C. Miller
instead of just a warning which is consistent with the way an invalid user is treated.
2003-06-08Use _PW_NAME_LEN not MAXLOGNAME since the latter does not include the NUL.Todd C. Miller
2003-06-08use err/warnMichael Shalayeff
2003-06-06WIDE uses 3-term now; itojun okTheo de Raadt
2003-06-04mop up some more 3/4 license issuesTheo de Raadt
2003-06-04fix some more UCB term 3Theo de Raadt
2003-06-04kill terms 3 & 4Jason Wright
2003-06-04more 3/4 cleanups for lazy developersTheo de Raadt
2003-06-04another UCB one that can be fixed obviouslyTheo de Raadt
2003-06-04kill clause 3 & 4Jason Wright
2003-06-04toast some 3 & 4 for espieTheo de Raadt
2003-06-03remove term 3, with permission from Chris Kuethe for pathnames.hBob Beck
2003-06-03Don't need 'all right reserved'; brings this into line with my otherTodd C. Miller
ISC-style copyrights.
2003-06-03Nuke terms 3 & 4 on my code.Tobias Weingartner
2003-06-03last bit of clause 3 & 4 nuking for me.Jason Wright
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-06-02remove clause 3 and 4. -mojMats O Jansson
2003-06-02remove clause 3 and 4. -mojMats O Jansson
2003-06-02remove clause 3 and 4. -mojMats O Jansson
2003-06-02three four kill ...Michael Shalayeff
2003-06-02Relax licence by removing the 3rd clause on all files whereI was stillMiod Vallat
using a 3 clause licence.
2003-06-02I'm a dork, I removed the 4th clause of the UCB license instead ofTodd C. Miller
the 3rd one.
2003-06-02Update old UCB license w/ new one based on /sys/net/slcompress.[ch]Todd C. Miller
2003-06-02more term cleanup by meTheo de Raadt
2003-06-02remove terms 3 and 4 of some of my licencesTheo de Raadt
2003-06-01various format string cleanups; tedu okTheo de Raadt
2003-05-30string cleaning; ok jakob, teduTodd T. Fries
2003-05-29Don't reject non-DHCPNAK packets with a yiaddr of 0.0.0.0. ThereTodd C. Miller
are commonly used dhcp servers (like Comcast in the US) that do this. Turns out later versions of ISC dhcp dropped this check as well. It is better to be liberal in what you accept... deraadt@ OK