summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Back out rev. 1.42 and 1.43. Apply Graham Wheeler's signal handling patch.des1998-12-281-73/+115
| | | | | | Reviewed by: jkh & eivind Submitted by: Graham Wheeler <gram@cdsec.com> PR: bin/8183
* Block SIGHUP during call to gethostbyaddr().cwt1998-12-281-1/+6
| | | | | | PR: 5548 Reviewed by: Matthew Dillon <dillon@apollo.backplane.com> Obtained from: OpenBSD
* Initial entry of ISDN4BSD into the FreeBSD tree.phk1998-12-2794-1/+26456
| | | | | | | | | | | | | | | ISDN4BSD is the work of our brand-new comitter: Hellmuth Michaelis, who has done a tremendous amount of work to bring us this far. There are still some outstanding issues and files to bring into the tree, and for now it will be needed to pick up all the extra docs from the isdn4bsd release. It is probably also a very good idea to subscribe to the isdn@freebsd.org mailing list before you try this out. These files correspond to release "beta Version 0.70.00 / December 1998" from Hellmuth.
* Update sppp support to i4b level. This includes the new spppcontrolphk1998-12-271-1/+2
| | | | program to set PPP options like authentication with.
* follow up to:phk1998-12-27107-18313/+1
| | | | Pre 3.0 branch cleanup casualty #4: pcvt
* Fix the spelling of `FreeBSD'.joerg1998-12-271-2/+2
| | | | Submitted by: Peter Philipp <pjp@bsd-daemon.net>
* Remove previous cast again - it triggers a compiler bug on the Alphajkh1998-12-252-4/+4
| | | | | which prevents sysinstall from building. We'll just have to live with the warning on the x86. :(
* The largest PID is now 99999peter1998-12-231-2/+2
| | | | Reported by: Ben Stuyts <ben@stuyts.nl>
* Collapse the "get" code substantially by combining common functions.jkh1998-12-2213-151/+91
| | | | | Also make mountpoint for each media type easier to change. Also reshuffled some menus for easier usage.
* Fixed typo done, thanks!foxfair1998-12-201-3/+3
|
* Add an option for insecure mode, in which rwhod does not discard packetsdes1998-12-172-4/+16
| | | | from incorrect source ports.
* Don't return stack-based data. This may have causedbrian1998-12-171-2/+2
| | | | server-side CHAP authentication problems in the past :-/
* Make it possible to have separate install scripts as well as havejkh1998-12-1610-54/+310
| | | | | | an on-delete script. Submitted by: Rajesh Vaidheeswarran <rv@fore.com>
* Old stuff lying around a source tree:peter1998-12-162-5/+11
| | | | Create/remove /etc/wall_cmos_clock without using system() and magic paths.
* Free memory from getmode.imp1998-12-161-1/+2
| | | | Obtained from: OpenBSD
* Remove signal mask prior to calling execdillon1998-12-151-1/+2
|
* Fix a rather bad latency problem (uncovered by the recent timer commit).brian1998-12-151-2/+2
| | | | Problem reported by: Christopher Hall <hsw@acm.org>
* Add pt_tcplisten.c functionality, fix a few minor bugsdillon1998-12-157-11/+234
| | | | | PR: kern/8793, misc/8796, kern/8797, kern/8798, kern/8050, kern/6758 Submitted by: Duncan Barclay <dmlb@ragnet.demon.co.uk>
* Rather than interrupting 10 times per second then checkingbrian1998-12-143-49/+46
| | | | | | | | | | | to see if there's anything to do, schedule the next alarm based on the next required timeout. This decreases the load when there are lots of relatively idle ppp processes. While I'm in there, handle the possibility that a timeout makes the timer element go out of scope by grabbing the enext pointer before executing the timer function.
* Added Idn_hibma1998-12-145-1/+5
|
* Allow a variable as the first arg to ``set proctitle''.brian1998-12-141-7/+13
|
* Mention the cosmetic necessity to ``iface clear'' in ppp.linkdown.brian1998-12-141-0/+3
|
* Fix a couple grammar and typographical errors.steve1998-12-131-18/+18
| | | | | PR: 8355 Submitted by: Bruce A. Mah <bmah@ca.sandia.gov>
* Cleanup usage string: -i takes an argument.steve1998-12-131-2/+2
| | | | | PR: 8315 Submitted by: Amakawa Shuhei <amakawa@sf.t.u-tokyo.ac.jp>
* Made this actually work when there is an obj dir.bde1998-12-132-12/+4
| | | | | | Removed bogons, especially the include of bsd.subdir.mk. Fixed style bugs.
* Unbreak make world. Sorry about that. I'll have to figure out the stepsn_hibma1998-12-131-3/+1
| | | | to add those programs properly.
* PR: bin/8624dillon1998-12-131-2/+5
| | | | | Fixed intermediate calculation overflow when reporting users with > 2GB of disk space.
* PR: bin/5572dillon1998-12-131-16/+28
| | | | | | | Prevent cron from going crazy if the time steps. For example, if you have a system with hundreds of users and lots of different crontabs and your time steps back an hour, the old cron would then attempt to run an hours worth of cron jobs in a few seconds.
* PR: bin/3478dillon1998-12-132-6/+43
| | | | | | | | | | | | | | Have pwd_mkdb lock the source file while rebuilding the database. When called by programs such as vipw, the source file is a temporary file and this does not conflict with the lock on /etc/master.passwd already held by vipw. When run manually, however, master.passwd is typically specified as the argument and the locking prevents other programs from messing with master.passwd during the database rebuild. Also pwd_mkdb uses a blocking exclusive lock as it may be called from a script. The -N option was added to cause pwd_mkdb to get the lock non-blocking and exit with an error if the attempt fails, again useful for scripts.
* oops. Fix indentation of the 'for' loop I just added.dillon1998-12-131-18/+18
|
* Handle the race condition where vipw may lock a password file which hasdillon1998-12-131-6/+22
| | | | | just been replaced. After our lock succeeds we check if st_nlink is 0 and if it is we close the descriptor and retry our open/lock sequence.
* sendmsg() didn't like the MSG_EOR flag and returned an error. Removing thedillon1998-12-121-2/+2
| | | | flag makes portal tcp operation work.
* Close PR bin/8753 pwd_mkdb problem when having comments in passwd filefoxfair1998-12-121-1/+5
| | | | Submitted by Chia-liang Kao clkao@CirX.ORG .
* Added usbd, usbdevs directoriesn_hibma1998-12-121-1/+3
| | | | Submitted by: MIHIRA Sanpei Yoshiro
* Reviewed by: freebsd-currentdillon1998-12-111-27/+63
| | | | | Fix signal/library corruption by blocking all signals except during select(). The reported corruption was with reentrancy in the malloc lib.
* Fix typo.kuriyama1998-12-101-2/+2
|
* Boy, this was tricky to find:brian1998-12-101-1/+2
| | | | | | | Remove any dial timer that might be hanging around at datalink_Destroy() time. This timer may be left running after the link is closed (making sure it's not automatically opened again too soon).
* When using ``set device !someprogram'', when ``someprogram''brian1998-12-103-5/+24
| | | | | | | exits, it causes a select() exception. Handle these select() exceptions on link descriptors in pretty much the same way as loss of carrier rather than dropping out in confusion.
* Eliminate compiler warning when compiling "config.c" in a kernel.archie1998-12-101-2/+2
|
* Stop erroneously claiming that we're installing booteasy.jkh1998-12-092-4/+4
|
* Sync usage string with reality: removed -n, added -s.alex1998-12-061-2/+2
|
* Fix an exceedingly *stupid* error in my floppy selection logicjkh1998-12-062-2/+6
| | | | | | | | which was hosing the fixit functionality. PR: 8983 Fixed and embarassed by: Nobuyuki Koganemaru <kogane@koganemaru.co.jp> :-)
* Fix support for uncompressed (".tar") package types. It's not completelyasami1998-12-052-8/+24
| | | | | fixed (chained dependency checking for pkg_add is broken, for one thing) but at least you can now create one package and use it.
* Typo and formatting updates.billf1998-12-042-16/+22
| | | | | | PR: docs/8504 Approved by: Brian Somers Submitted by: Kazuo Horikawa <horikawa@jp.FreeBSD.org>
* An early Christmas present: add driver support for a whole bunch ofwpaul1998-12-042-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PCI fast ethernet adapters, plus man pages. if_pn.c: Netgear FA310TX model D1, LinkSys LNE100TX, Matrox FastNIC 10/100, various other PNIC devices if_mx.c: NDC Communications SOHOware SFA100 (Macronix 98713A), various other boards based on the Macronix 98713, 98713A, 98715, 98715A and 98725 chips if_vr.c: D-Link DFE530-TX, other boards based on the VIA Rhine and Rhine II chips (note: the D-Link and certain other cards that actually use a Rhine II chip still return the PCI device ID of the Rhine I. I don't know why, and it doesn't really matter since the driver treats both chips the same anyway.) if_wb.c: Trendware TE100-PCIE and various other cards based on the Winbond W89C840F chip (the Trendware card is identical to the sample boards Winbond sent me, so who knows how many clones there are running around) All drivers include support for ifmedia, BPF and hardware multicast filtering. Also updated GENERIC, LINT, RELNOTES.TXT, userconfig and sysinstall device list. I also have a driver for the ASIX AX88140A in the works.
* Allow either tabs or spaces in configuration files.jkh1998-12-042-10/+22
| | | | | PR: 8762 Submitted by: Igor Roshchin <str@giganda.komkon.org>
* Make a spelling fix, and make sure all instances of belltype contain thebillf1998-12-031-2/+2
| | | | | | | preceded option "quiet." PR: docs/8506 Submitted by: Kazuo Horikawa <horikawa@jp.FreeBSD.org>
* Clarify what the '-r' option does.billf1998-12-031-2/+2
| | | | | PR: docs/8108 Submitted by: Matthew Fuller <fullermd@futuresouth.com>
* Update for XFree86 3.3.3jkh1998-12-022-14/+14
|
* 1. Increase NFS path length.jkh1998-12-023-182/+182
| | | | 2. Bump to XFree86 3.3.3.
OpenPOWER on IntegriCloud