aboutsummaryrefslogtreecommitdiff
path: root/loginutils
AgeCommit message (Collapse)Author
2003-07-15Document CONFIG_USE_BB_PWD_GRPEric Andersen
2003-07-14Looks like I forgot one little tiny detail...Eric Andersen
2003-07-14Update a bunch of docs. Run a script to update my email addr.Eric Andersen
2003-07-14decouple delgroup and deluserEric Andersen
2003-07-14Patch from Thomas Cameron:Eric Andersen
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.
2003-07-03Patch from Russell Coker:Eric Andersen
I've attached my latest SE Linux patch for busybox against the latest CVS version of busybox.
2003-06-21Based on a tinylogin patch from Philip Blundell, add severalEric Andersen
additional options to adduser. -Erik
2003-06-20last_patch89 from vodz:Eric Andersen
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
2003-03-19Major coreutils update.Manuel Novoa III
2003-02-08Patch from Joshua Jackson, make md5 the default hash algorithmGlenn L McGrath
2003-02-08Patch from Nick Fedchik, CONFIG_SYSLOGD should determine getty'sGlenn L McGrath
behaviour.
2003-01-21run telnet from inetd, present login prompt if login is configured,Glenn L McGrath
patch from Bastian Blank
2003-01-21re-order config options, part of a patch from Bastian BlankGlenn L McGrath
2003-01-09Fix addgroup so it actually worksEric Andersen
-Erik
2002-12-13use const group_fileTim Riker
2002-12-12Teach addgroup to add user names to groupsEric Andersen
2002-12-05Yet another major rework of the BusyBox config system, using the considerablyEric Andersen
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
2002-12-03A missing /etc/securetty is not an error when checking the tty name - theRobert Griebl
comment is right, but the code was wrong ..
2002-11-14Patch from Marcel Hamer to fix addgroup argument parsingEric Andersen
2002-11-14A missing securetty file is not an error.Eric Andersen
-Erik
2002-11-07Remove gratuitous and unnecessary "BusyBox" refernece in login promptEric Andersen
-Erik
2002-10-10last_patch61 from vodz:Eric Andersen
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.
2002-10-10last_patch60 from vodz:Eric Andersen
login and getty applets writes utmp/wtmp but init do clearing not. I think, in current time deny wtmp/utmp writes as undefault features.
2002-09-16Apply vodz' last_patch52Eric Andersen
2002-08-23Don't #ifdef __linux__. this is linux.Aaron Lehmann
2002-08-06Fix silly typo. addgroup was using /etc/shadow for /etc/gshadow.Manuel Novoa III
2002-07-21Fixed two compiler warningsRobert Griebl
2002-07-19Applied vodz' patches #49 and #50 (with a small correction in runshell.c)Robert Griebl
#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.
2002-07-16Fix for the totally broken adduser applet (parts/ideas from vodz and tito)Robert Griebl
2002-07-03Scrub pwd.h and grp.h handling so we don't have to play anyEric Andersen
silly games. -Erik
2002-07-03tito <farmatito@tiscali.it> noticed that delgroup was actuallyEric Andersen
setting CONFIG_DELUSER. Oops.
2002-07-03hide shadow using stuff when CONFIG_FEATURE_SHADOWPASSWDSEric Andersen
is not set -Erik
2002-07-03Fix text alignment, thanks to Sander Klein <s.klein@quicknet.nl>Eric Andersen
2002-07-03Cleanup shadow.h stuff so it behaves as intendedEric Andersen
-Erik
2002-06-23Port over the last of the tinylogin appletsEric Andersen
-Erik
2002-06-22Several login cleanups from vodzEric Andersen
2002-06-04Bigger patch for (partial) tinylogin integrationRobert Griebl
- 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]