summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Dispense with the special case handling of cuaa* devices by synthesizingjkh1996-06-126-99/+117
| | | | separate entries for sl0 and ppp0 on each device.
* Some stuff I left out of the last commit - make toggle options togglejkh1996-06-126-44/+108
| | | | again instead of simply letting you set them and staying that way forever.
* Fix a truly stupid bug which broke the package installation menujkh1996-06-1210-19/+108
| | | | | for everything _but_ the multi-user case now (it was the opposite before :-). That means adding packages with the 2.2-960511-SNAP boot floppy is busted. Feh.
* handle a message box which can potentially go past 80 cols.jkh1996-06-121-2/+2
|
* Cosmetic fixes for drive names which are 4 chars long.jkh1996-06-111-2/+2
| | | | Submitted-By: Joe Greco <jgreco@ns.sol.net>
* Put in a strategic dialog_clear() to prevent screen corruption reportedjkh1996-06-112-2/+4
| | | | by Joerg.
* Change some verbiage slightly.jkh1996-06-112-4/+6
|
* A slight error in my logic had me using color text attributes on Herculesjkh1996-06-112-4/+4
| | | | monochrome displays. Whoops! Fix.
* Misc doc cleanup.jkh1996-06-113-17/+22
|
* Come up with a scheme for stamping the FreeBSD version number on CDs,jkh1996-06-111-4/+36
| | | | | | | allowing sysinstall to automagically detect, mount and select an appropriate FreeBSD CDROM as the installation media. Defining "appropriate" also requires that you check the version numbers since an older FreeBSD CD could be in the drive, which is the purpose of this patch.
* documented login name limitwosch1996-06-091-9/+18
| | | | Obtained from: mailing list
* Prepare for exec properly and check return valuesache1996-06-092-5/+19
| | | | Submitted by: Arjan de Vet <devet@IAEhv.nl>
* Ack! You can't strdup() a DB datum that is not null terminated, or youpeter1996-06-091-3/+4
| | | | get seemingly random SEGV's...
* Added function prototypes and removed in-line prototypes of standardalex1996-06-081-27/+37
| | | | functions such as malloc and time.
* Bring back the `config file in the kernel' feature from the 1.x days. Thisjkh1996-06-082-0/+45
| | | | | | | is conditionalized by the INCLUDE_CONFIG_FILE option in your kernel config file and is not turned on by default. Submitted-By: Bill Pechter <pechter@shell.monmouth.com>
* Implement selective text attributes for the syscons vty / vt100 emulatorjkh1996-06-0813-36/+34
| | | | | selection since an attribute which looks good on a color console doesn't necessarily look good in an xterm.
* Put back some changes I inadvertantly spammed with a cvs update.jkh1996-06-086-27/+67
|
* Merge changes from HEAD.jkh1996-06-081-18/+9
|
* Make CDROMs automagically select as the default media type.jkh1996-06-087-50/+66
| | | | | If you're running multi-user, check off items in the packages menu based on whether or not they're actually installed.
* Change min_free to return free space as an off_t instead of a size_t.alex1996-06-082-6/+6
|
* Fix uninitialized variable that caused a core dump if /etc/newsyslog.confalex1996-06-071-2/+2
| | | | | | was empty. Closes PR bin/1300. Found by: Brian Tao <taob@io.org>
* Somehow, I truncated yp_dbwrite.c in the SRCS line to yp_dbwrite. Curiously,wpaul1996-06-061-2/+2
| | | | this did not stop 'make' from working, but it did break 'make depend.'
* Add -I${.CURDIR}/../../libexec/ypxfr to CFLAGS so we can see ypxfr_extern.h.wpaul1996-06-061-2/+2
|
* Take ypxfrd_xdr.c out of SRCS line here too. This program is alsowpaul1996-06-061-2/+2
| | | | linked with librpcsvc.
* Whoops: dragged along an extra copy of the protocolwpaul1996-06-051-117/+0
| | | | | definition file by mistake. This isn't needed so long as the one in include/rpcsvc is installed.
* Added support for in-place updates:wpaul1996-06-056-42/+195
| | | | | | | | | | | | | | | | | If rpc.yppasswdd is invoked with the -i flag, password changes will be made to the master.passwd template file and the hash map files in-place, which means it won't have to run a complete map update. Instead, it calls /var/yp/Makefile with the 'pushpw' target, which just pushes the maps to the slaves and runs yp_mkdb -c to tell the local ypserv to flush its database cache. The server will check the passwd.byname and passwd.byuid maps to see if they were built in 'insecure' or 'secure' mode (i.e. with real encrypted passwords in them or without) and update them accordingly. This combined with rpc.ypxfrd greatly reduces the amount of time it takes to complete an NIS password change, especially with very large passwd databases.
* Update to pass new arguments now expected by the yp_dbwrite routines.wpaul1996-06-051-10/+10
| | | | No functional changes.
* Add rpc.ypxfrd.wpaul1996-06-051-3/+3
|
* Add pccard to makefile systemphk1996-06-051-2/+2
|
* Add BINDIRphk1996-06-051-0/+1
|
* This commit was generated by cvs2svn to compensate for changes in r16125,wpaul1996-06-056-0/+767
| | | | which included commits to RCS files with non-trunk default branches.
* Makefile.yp:wpaul1996-06-053-21/+52
| | | | | | | | | | | | | | | | | | | | | | | - Add a 'pushpw' target that only yppushes the various passwd maps and sends a YPPROC_CLEAR to the local ypserv. This will be used by rpc.yppasswdd once I merge in the in-place update changes. yp_access.c: - Make the yp_access() function print RPC program and procedure numbers that it doesn't know about in literal form. This will allow it to work with other prgrams that it doesn't know about, like rpc.ypxfrd I'm going to import shortly. yp_dblookup.c: - Take out the __inline keywords. They weren't really helping me anyway. - Somehow I broke yp_next() when DB_CACHE wasn't #defined. Fix it. - Also fix potential case where yp_next() might loop forever; make sure it checks the return values of all the (dbp->seq)()/R_NEXT calls that it does as well as comparing keys.
* Close a file descriptor leak. Possibly closes PR #1212gpalmer1996-06-031-2/+4
|
* fix PR#599jkh1996-06-031-1/+4
| | | | Submitted-By: jdp
* Backout yacc changes.phk1996-06-029-9/+9
|
* People ask in Usenet, how to configure remoteprinting successfullywosch1996-06-012-1/+3
| | | | | | | having a hosts.lpd(5) manpage and some references to it from within lpd(8) might help here. Close PR docs/1277 Submitted by: andreas@knobel.gun.de (Andreas Klemm)
* Oh my, looks like I didn't understand .B as well as I thought I did! :-)jkh1996-06-011-3/+9
|
* Small touch-ups -- no functional changes.wpaul1996-05-317-34/+40
| | | | | | | | | | | | | | | Fix some comments to reflect reality (in some cases I made changes to code but not to the comments). Change some instances of 'inline' to '__inline' to pacify gcc -ansi -pedantic. Use rcsid strings more consistently. Make 'oldaddr' static in yp_access(). Use strcpy()/strcat() in yp_open_db_cache() instead of snprintf(). (Seems to be a little faster this way.)
* yacc rule changes.phk1996-05-309-9/+9
|
* Copy SGI routed onto head.wollman1996-05-309-1266/+4475
|
* Superseded by rttrace and rtquerywollman1996-05-304-433/+0
|
* Initial revisionwollman1996-05-3010-0/+5064
|
* Drop privileges if not using standard namelist or kernel file.pst1996-05-301-1/+8
| | | | Submitted by: smpatel (Sujal Patel)
* Drop privileges if not using standard namelist or file.pst1996-05-301-1/+8
| | | | Submitted by: smpatel (Sujal Patel)
* Enable the -M and -N options of swapinfo, as advertised in the usage line.smpatel1996-05-291-1/+1
|
* Fix some minor formatting dreck.jkh1996-05-291-8/+9
|
* Sha-ZAM!jkh1996-05-298-156/+25
| | | | | The root floppy is now gone. I shall not mourn its passing. Everything we need is on boot.flp or the bindist.
* Very small semantic change.jkh1996-05-281-2/+2
|
* Only look at command-line args if we're not running as init - duh!jkh1996-05-282-4/+4
| | | | Thanks, David.
* document values for option -rwosch1996-05-281-6/+8
|
OpenPOWER on IntegriCloud