aboutsummaryrefslogtreecommitdiff
path: root/loginutils (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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]