summaryrefslogtreecommitdiff
path: root/loginutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Set the default password to md5, patch by Joshua JacksonGlenn L McGrath2003-09-041-1/+1
|
* move all "-/bin/sh" "/bin/sh" and "sh" to libbb/messages.c file as oneGlenn L McGrath2003-09-023-7/+7
| | | | | constant. Vodz last_patch_107
* Vodz, last patch 105Glenn L McGrath2003-08-291-74/+66
| | | | | | Busybox "mount" applet unsupport "user" option and result: must have _BB_SUID_NEVER applet option (my bug). Last patch have reducing 216 bytes for "su" applet also.
* Ronny L Nilsson writes:Eric Andersen2003-07-301-5/+2
| | | | | | | | The login process should always timeout if user don't login sucessfully within reasonable time. Otherwise we're sensetive to a DOS attack by simply doing a bunch of simultaneous telnet connections (deploys all availible TTY's). This patch make login.c terminate the connection after "TIMEOUT" seconds.
* the word "only" is repeated for CONFIG_FEATURE_SHADOWPASSWDSEric Andersen2003-07-221-1/+1
|
* Patch from Terje Kvernes adding quite a lot of missing documentationEric Andersen2003-07-221-4/+18
|
* Document CONFIG_USE_BB_PWD_GRPEric Andersen2003-07-151-1/+17
|
* Looks like I forgot one little tiny detail...Eric Andersen2003-07-142-3/+5
|
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-142-2/+2
|
* decouple delgroup and deluserEric Andersen2003-07-144-120/+183
|
* Patch from Thomas Cameron:Eric Andersen2003-07-141-9/+16
| | | | | | | | | | | Hello all, This patch adds more "Help" text to the config system. Almost all applets now have a help entry. Also, I cleaned up the spacing of the existing text so that things are consistent. This patch is against this morning's CVS. Thomas Cameron CEI Systems, Inc.
* Patch from Russell Coker:Eric Andersen2003-07-032-3/+50
| | | | | I've attached my latest SE Linux patch for busybox against the latest CVS version of busybox.
* Based on a tinylogin patch from Philip Blundell, add severalEric Andersen2003-06-211-30/+74
| | | | | additional options to adduser. -Erik
* last_patch89 from vodz:Eric Andersen2003-06-202-45/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Manuel, I rewrite bb_getopt_ulflags() function for more universal usage. My version support now: - options with arguments (optional arg as GNU extension also) - complementaly and/or incomplementaly and/or incongruously and/or list options - long_opt (all applets may have long option, add supporting is trivial) This realisation full compatibile from your version. Code size grow 480 bytes, but only coreutils/* over compensate this size after using new function. Last patch reduced over 800 bytes and not full applied to all. "mkdir" and "mv" applets have long_opt now for demonstrate trivial addition support long_opt with usage new bb_getopt_ulflags(). Complementaly and/or incomplementaly and/or incongruously and/or list options logic is not trivial, but new "cut" and "grep" applets using this logic for examples with full demostrating. New "grep" applet reduced over 300 bytes. Mark, Also. I removed bug from "grep" applet. $ echo a b | busybox grep -e a b a b a b But right is printing one only. --w vodz
* Major coreutils update.Manuel Novoa III2003-03-199-94/+105
|
* Patch from Joshua Jackson, make md5 the default hash algorithmGlenn L McGrath2003-02-081-3/+3
|
* Patch from Nick Fedchik, CONFIG_SYSLOGD should determine getty'sGlenn L McGrath2003-02-081-5/+2
| | | | behaviour.
* run telnet from inetd, present login prompt if login is configured,Glenn L McGrath2003-01-212-147/+11
| | | | patch from Bastian Blank
* re-order config options, part of a patch from Bastian BlankGlenn L McGrath2003-01-211-12/+14
|
* Fix addgroup so it actually worksEric Andersen2003-01-091-9/+19
| | | | -Erik
* use const group_fileTim Riker2002-12-131-2/+2
|
* Teach addgroup to add user names to groupsEric Andersen2002-12-121-4/+11
|
* Yet another major rework of the BusyBox config system, using the considerablyEric Andersen2002-12-052-32/+97
| | | | | | | | modified Kbuild system I put into uClibc. With this, there should be no more need to modify Rules.mak since I've moved all the interesting options into the config system. I think I've got everything updated, but you never know, I may have made some mistakes, so watch closely. -Erik
* A missing /etc/securetty is not an error when checking the tty name - theRobert Griebl2002-12-031-1/+1
| | | | comment is right, but the code was wrong ..
* Patch from Marcel Hamer to fix addgroup argument parsingEric Andersen2002-11-141-16/+9
|
* A missing securetty file is not an error.Eric Andersen2002-11-141-4/+2
| | | | -Erik
* Remove gratuitous and unnecessary "BusyBox" refernece in login promptEric Andersen2002-11-071-1/+1
| | | | -Erik
* last_patch61 from vodz:Eric Andersen2002-10-102-27/+11
| | | | | | | | | New complex patch for decrease size devel version. Requires previous patch. Also removed small problems from dutmp and tar applets. Also includes vodz' last_patch61_2: Last patch correcting comment for #endif and more integrated with libbb (very reduce size if used "cat" applet also). Requires last_patch61 for modutils/config.in.
* last_patch60 from vodz:Eric Andersen2002-10-102-4/+21
| | | | | login and getty applets writes utmp/wtmp but init do clearing not. I think, in current time deny wtmp/utmp writes as undefault features.
* Apply vodz' last_patch52Eric Andersen2002-09-161-10/+6
|
* Don't #ifdef __linux__. this is linux.Aaron Lehmann2002-08-231-4/+0
|
* Fix silly typo. addgroup was using /etc/shadow for /etc/gshadow.Manuel Novoa III2002-08-061-2/+2
|
* Fixed two compiler warningsRobert Griebl2002-07-211-2/+2
|
* Applied vodz' patches #49 and #50 (with a small correction in runshell.c)Robert Griebl2002-07-193-9/+6
| | | | | | | | | #49: I found one memory overflow and memory leak in "ln" applet. Last patch reduced also 54 bytes. ;) #50: I found bug in loginutils/Makefile.in. New patch have also new function to libbb and aplied this to applets and other cosmetic changes.
* Fix for the totally broken adduser applet (parts/ideas from vodz and tito)Robert Griebl2002-07-161-18/+10
|
* Scrub pwd.h and grp.h handling so we don't have to play anyEric Andersen2002-07-031-3/+3
| | | | | silly games. -Erik
* tito <farmatito@tiscali.it> noticed that delgroup was actuallyEric Andersen2002-07-031-1/+1
| | | | setting CONFIG_DELUSER. Oops.
* hide shadow using stuff when CONFIG_FEATURE_SHADOWPASSWDSEric Andersen2002-07-031-1/+4
| | | | | is not set -Erik
* Fix text alignment, thanks to Sander Klein <s.klein@quicknet.nl>Eric Andersen2002-07-031-6/+4
|
* Cleanup shadow.h stuff so it behaves as intendedEric Andersen2002-07-031-0/+4
| | | | -Erik
* Port over the last of the tinylogin appletsEric Andersen2002-06-2312-345/+866
| | | | -Erik
* Several login cleanups from vodzEric Andersen2002-06-221-25/+32
|
* Bigger patch for (partial) tinylogin integrationRobert Griebl2002-06-0411-0/+2805
- Made a new dir loginutils - Moved all applets from pwd_grp to loginutils - Added new applets su.c login.c to loginutils - Made a new dir libpwdgrp - Moved everything from pwd_grp/libpwd_grp there - Added shadow.c to libpwdgrp - Removed dir pwd_grp - Added usage strings for login and su to usage.h - Changed main Makefile to reflect the dir rearrangements [Parts of this patch may overlap with my other two patches]