aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Fix a variety of minor typos and cross references in a bunch ofMike Pritchard1996-01-205-10/+11
| | | | | | | | | | | man pages. Masanobu Saitoh <msaitoh@spa.is.uec.ac.jp> Giles Lean <giles@nemeton.com.au> <soda@sra.co.jp> Notes: svn path=/head/; revision=13511
* Removed config.new from the release. It is unused by any current versionNate Williams1996-01-2017-4944/+3
| | | | | | | of FreeBSD, and only serves to generate confusion and increase bloat. Notes: svn path=/head/; revision=13506
* Hostname points to static area which overrides with each gethost*Andrey A. Chernov1996-01-191-1/+1
| | | | | | | call, strdup() it. Notes: svn path=/head/; revision=13489
* Teach tcpdump to print out router advertisement and solicitation messages.Bill Fenner1996-01-191-1/+8
| | | | Notes: svn path=/head/; revision=13488
* add yppushAdam David1996-01-171-2/+2
| | | | Notes: svn path=/head/; revision=13476
* Fix a few minor bogons in the docs, also make it possible to execute cmdsJordan K. Hubbard1996-01-162-44/+115
| | | | | | | | | | from args, e.g. cdplay cd0 "play 1 99" if you just want to feed the CD a command and exit the cdplay utility. Note that if you want to use post-play commands like `pause' and `resume', you should still use cdplay interactively. Notes: svn path=/head/; revision=13461
* Submitted by: charnier@lirmm.fr (Philippe Charnier)Thomas Graichen1996-01-162-82/+51
| | | | | | | | | | | 1) correct MAX_PID according to system definition. 2) replace fprintf(stderr,...)/perror/exit by 4.4 equivalence. 3) make strings enough larger so they can't overflow: MAXHOSTNAMELEN for host and MAXPATHLEN for filenames. 4) call execl with correct parameters (compress -> gzip). Notes: svn path=/head/; revision=13460
* Fixed to not core dump if not enough arguments are givenMike Pritchard1996-01-151-0/+4
| | | | | | | with the +rec and -rec options. Notes: svn path=/head/; revision=13435
* Mount the disks we install on async, we might as well.Poul-Henning Kamp1996-01-142-6/+6
| | | | | | | Saves a lot of time. Notes: svn path=/head/; revision=13428
* Don't try to swap to a disk that isn't selected.Jordan K. Hubbard1996-01-142-2/+6
| | | | Notes: svn path=/head/; revision=13421
* take the $ out of the $Id$ line - when I imported this I used -ko, butPeter Wemm1996-01-131-1/+1
| | | | | | | | that is conflicting with cvs-1.6's "cvs update -A" when run from freefall's update jobs. Notes: svn path=/head/; revision=13412
* Make a little more effort to avoid touching certain generated files ifPeter Wemm1996-01-126-11/+84
| | | | | | | they were not changed. This makes 'make depend' more useful. Notes: svn path=/head/; revision=13400
* Update pointer to yppush.Bill Paul1996-01-121-2/+2
| | | | | | | (And now, on to rpc.yppasswdd...) Notes: svn path=/head/; revision=13398
* Import the new yppush.Bill Paul1996-01-124-0/+925
| | | | | | | | | | | | | | | | | | | | This program does what the old one did, PLUS: - Supports parallel jobs (like the SunOS yppush) - Does everything in one proces instead of fork()ing off children processes as callback listeners (this is done using async socket I/O). - Can be used to transmit maps to user-specified hosts. - Has a much more verbose verbose option. - Reuses existing code from ypserv and ypxfr. - Uses some rpcgen-erated code as well. - Isn't fattening. :) Note that this is going in /usr/sbin rather than /usr/bin like the old one. yppush is an administrative command it it's anything. Notes: svn path=/cvs2svn/branches/WPAUL/dist2/; revision=13394
* Final cleanup for now. -Wall is now silent. A couple of bogons found.Poul-Henning Kamp1996-01-1132-53/+294
| | | | Notes: svn path=/head/; revision=13389
* My freshly aborted 'make world' has pointed out that the wait.h includePeter Wemm1996-01-111-2/+2
| | | | | | | file is <sys/wait.h>, not <wait.h> as was recently committed. Notes: svn path=/head/; revision=13385
* A random bunch of cleanup changes.Poul-Henning Kamp1996-01-1014-36/+47
| | | | Notes: svn path=/head/; revision=13379
* More changes brought about by testing of yppush (which is almost finished):Bill Paul1996-01-102-18/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | In yp_server.c: - Modify ypproc_xfr_2_svc() so that it sends both a return status and a yppush callback (if necessary: normally ypxfr is supposed to send the callback once it's done transfering a map, but if we can't get ypxfr off the ground for some reason, we have to send it here instead) and do it in the right order: have to send the reply to the ypproc_xfr request first, then send callback. This requires us to cheat a bit: you're supposed to just return() and let the RPC dispatcher send the reply for you, but we wouldn't be able to send the callback message if we did that, so we have to call svc_sendreply() ourselves, then send the callback, and then return NULL so that the RPC dispatcher won't call svc_sendreply() itself. - Also modify ypproc_xfr_2_svc() so that it doesn't invoke ypxfr with the -f flag: this overrides the order number checks, which prevents us from ever refusing maps that aren't newer than then ones we already have. In yp_access.c: - Fix a typo in the TCP_WRAPPER support code (which is #ifdef'ed out by default): a close paren somehow vanished into the ether. Notes: svn path=/head/; revision=13375
* Obtained from: David Mazieres (OpenBSD)Thomas Graichen1996-01-091-1/+5
| | | | | | | | | | | | | | | added "#define PRECISE_SYMLINKS" to the amd config header - this solves a problem with the amd "-type:=direct" mounts and /bin/sh giving a "readlink failed" if you cd'ed to a "-type:=direct" mounted directory i got this from david mazieres as a result of giving him our (mostly doug rabsons) fixes for the amd "-type:=direct" mounts and telling them (also some NetBSD people were interested) about my only problem running these fixes (which is now solved too :-) Notes: svn path=/head/; revision=13359
* Obtained from: NetBSD (PR#1906)Thomas Graichen1996-01-091-4/+4
| | | | | | | removed date formatting glitch in newsyslog Notes: svn path=/head/; revision=13358
* Second attempt to correct the leap year handling.Thomas Gellekum1996-01-091-1/+2
| | | | Notes: svn path=/head/; revision=13356
* Somebody stumbled over the :? here.. :-)Jordan K. Hubbard1996-01-091-1/+1
| | | | Notes: svn path=/head/; revision=13355
* Fix leap year calculations in parse_to_unixtime()Thomas Gellekum1996-01-081-3/+5
| | | | Notes: svn path=/head/; revision=13342
* Mention a bug in lpd that causes a core dump if a request is made forJoerg Wunsch1996-01-071-0/+10
| | | | | | | | | a file format where no filter is assigned. Pointed out by: Richard_Pontefract@vos.stratus.com Notes: svn path=/head/; revision=13311
* Merge nslookup conflicts from 4.9.3-rel importPeter Wemm1996-01-073-16/+31
| | | | Notes: svn path=/head/; revision=13301
* Round 1 of the conflict merge. It now compiles..Peter Wemm1996-01-0726-942/+1270
| | | | Notes: svn path=/head/; revision=13300
* This commit was generated by cvs2svn to compensate for changes in r13298,Peter Wemm1996-01-071-12/+12
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=13299
| * At last.. :-) Import of bind-4.9.3-REL. (part 1 of several)Peter Wemm1996-01-0728-956/+1299
| | | | | | | | Notes: svn path=/vendor/bind4/dist/; revision=13298
| * Import nslookup from bind-4.9.3-beta26 (update from beta24)Peter Wemm1995-10-231-1/+11
| | | | | | | | Notes: svn path=/vendor/bind4/dist/; revision=11715
| * Import BIND-4.9.3-beta26, replacing the older beta24.Peter Wemm1995-10-2314-150/+390
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are some important bugfixes here, but nothing earth-shattering. In particular, the Lame Delegation detection is massively sped up, meaning that a lame server can be given up on in a few seconds, rather than taking 75 seconds. This will be a big win for large mailing list machines, eg: freefall. Note: this is a remote cvs import... Backups have been made.. :-) Obtained from: Paul Vixie <paul@vix.com> Notes: svn path=/vendor/bind4/dist/; revision=11710
* | This commit was generated by cvs2svn to compensate for changes in r13282,Peter Wemm1996-01-061-0/+326
|\ \ | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=13283
| * | Pull in the Release notes from release 3.8 - I forgot these last time aftervendor/mrouted/3.8Peter Wemm1996-01-061-0/+326
| | | | | | | | | | | | | | | | | | | | | | | | I had moved them out of the way. Notes: svn path=/cvs2svn/branches/XEROX/; revision=13282 svn path=/cvs2svn/tags/release_3_8/; revision=13284; tag=vendor/mrouted/3.8
| * | This is a 'for reference' import of mrouted release 3.8.Peter Wemm1996-01-0623-617/+1449
| | | | | | | | | | | | | | | | | | | | | I'm using these to try to resync our tree with the vendor branch.. Notes: svn path=/cvs2svn/branches/XEROX/; revision=13280
| * | This is a 'for reference' import of mrouted release 3.6. It's purevendor/mrouted/3.6Peter Wemm1996-01-0626-2985/+5400
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | conflict markers, but it actually changes nothing. We've been running this code with small changes for some time, this may be useful for checking what those changes. It was unfortunate this module got so far away from the vendor branch (whitespace changes didn't help) Notes: svn path=/cvs2svn/branches/XEROX/; revision=13278 svn path=/cvs2svn/tags/release_3_6/; revision=13279; tag=vendor/mrouted/3.6
| * | This commit was manufactured by cvs2svn to create branch 'XEROX'.cvs2svn1995-06-138-0/+1901
| | | | | | | | | | | | Notes: svn path=/cvs2svn/branches/XEROX/; revision=9212
* | | Resync our mainline to mrouted release 3.8.Peter Wemm1996-01-0623-613/+1441
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will make FreeBSD boxes better behaved 'MBONE Citizens', based on a couple of the comments about the severity of fixes.. Agreed to by: wollman, fenner@parc.xerox.com Notes: svn path=/head/; revision=13281
* | | added newsyslog and sprayThomas Graichen1996-01-051-3/+3
| | | | | | | | | | | | Notes: svn path=/head/; revision=13248
* | | Add sup and IPXrouted to makefilePeter Wemm1996-01-051-2/+8
| | | | | | | | | | | | | | | | | | | | | (IPXrouted is far more likely to be used than XNSrouted) Notes: svn path=/head/; revision=13246
* | | This commit was generated by cvs2svn to compensate for changes in r13244,Thomas Graichen1996-01-053-0/+751
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=13245
| * | | Obtained from: NetBSDThomas Graichen1996-01-053-0/+751
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | imported the newsyslog command from NetBSD - it make the "rotation" of the logfiles much simpler (it is currently done by "hand" in the /etc/[daily,weekly,monthly] scripts) - now it will be done by invoking newsyslog every hour which is very customizable via a /etc/newsyslog.conf file Notes: svn path=/vendor/NetBSD/dist/; revision=13244
* | | | This commit was generated by cvs2svn to compensate for changes in r13242,Thomas Graichen1996-01-053-0/+307
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=13243
| * | | Obtained from: NetBSDThomas Graichen1996-01-053-0/+307
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | imported the spray command from NetBSD - it can be used for network analysis (see the man-page) Notes: svn path=/vendor/NetBSD/dist/; revision=13242
| * | | recording cvs-1.6 file deathPeter Wemm1995-12-3043-9973/+0
| | | | | | | | | | | | | | | | Notes: svn path=/vendor/NetBSD/dist/; revision=13122
* | | | Restore the changes I made after my last brain hiccup...Peter Wemm1996-01-042-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Document /var/log/sup.rename instead of the old name Couple of lib build cleanups (like, not installing the library, and clean all files) It should be safe now.. :-) Notes: svn path=/head/; revision=13221
* | | | oops, do it right this timeAdam David1996-01-031-1/+1
| | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=13189
* | | | Link with libutil for kerberos tooAdam David1996-01-031-1/+1
| | | | | | | | | | | | | | | | Notes: svn path=/head/; revision=13188
* | | | Get sendmail to detect when to use the setproctitle() in libutilPeter Wemm1996-01-012-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This uses osreldate.h and other stuff to determine whether it's on a -current system. It should still compile cleanly on a -stable branch system. Notes: svn path=/head/; revision=13144
* | | | Minimal changes to get named to use libutil's setproctitle()...Peter Wemm1996-01-011-1/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The old code is still there with #ifdef OLD_SETPROCTITLE Notes: svn path=/head/; revision=13143
* | | | Make inetd use setproctitle from libutil instead of it's own version.Peter Wemm1996-01-012-5/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The old code can probably still be compiled with #define OLD_SETPROCTITLE Notes: svn path=/head/; revision=13142
* | | | Make nfsd use setproctitle from libutil...Peter Wemm1996-01-012-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Old code is still #ifdef OLD_SETPROCTITLE for comparison with the old code. Notes: svn path=/head/; revision=13141