summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Fix a couple of miscellaneous bugs and make pkg_add also support readingjkh1996-03-124-20/+34
| | | | from stdin.
* Include queue.h in preparation for struct socket changes.dg1996-03-111-0/+1
|
* From Lite2: file LIST changes.hsu1996-03-111-4/+4
|
* Correct paths for pcvt in FreeBSD. Close PR#1071jkh1996-03-101-30/+30
| | | | Submitted by: David E. O'Brien <obrien@Nuxi.cs.ucdavis.edu>
* 1) Open /dev/null for std* after setsid() to be shure that modem isache1996-03-094-6/+21
| | | | | | | | | *not* our controlling terminal (SIGHUP can coming in other case) 2) Add HUPCL for non-dedicated lines to be shure that modem properly resetted. 3) Correct usage string.
* Prevent dial cycling on the last phone from the list, make phone list copyache1996-03-083-6/+11
|
* Log phone as LOG_PHASE, it is valuable enough for multi-phone environment.ache1996-03-082-2/+4
| | | | | Add missing return when terminal mode can't be re-established due to modem not opened.
* 1) Add multi-phone dialing/redialing, several phones separated by ':'ache1996-03-088-42/+98
| | | | | | | | | | 2) Improve on-line help subsystem 3) Make 'term' mode works even carrier dropped (old code close line forever here) 4) Make 'term' mode 8bit clean. 5) Improve manual page 6) #ifdef DEBUG diagnostic about missing optional files. 7) Don't put interactive dialing info to logfile
* Work around the problem that our -current pppd can no longer talkjoerg1996-03-081-1/+5
| | | | | | | | with our iijppp as a client. Simply shut down the CCP layer if no matching protocol could be found. Reviewed by: peter
* Make yppwupdate script redirect stderr to stdout; if we don't do this,wpaul1996-03-051-3/+3
| | | | | the error messages (if any) from yppush will end up on the system console instead of the /var/yp/ypupdate.log file.
* Fix pstat to sync up with recent changes with swap space allocation.dyson1996-03-041-5/+7
|
* Eliminate multiply uucplock.cache1996-03-042-125/+4
|
* John Hay's extentions to tcpdump to be able to differentiate betweenpeter1996-03-034-15/+80
| | | | | | | IP and IPX packets over a PPP link. I added the hack to print the PPP protocol type for other (eg: LCP, CCP, etc) packets. Submitted by: John Hay <jhay@mikom.csir.co.za>, mods from me.
* Keep explicit newfs parameters, just set them differently.jkh1996-03-022-4/+4
|
* Let fragment size default to 1K again - 2K is a little extreme.jkh1996-03-022-4/+4
|
* Miscellaneous cleanup before big round of menu restructuring (to use newjkh1996-03-0218-293/+285
| | | | libdialog features).
* Use libmd.phk1996-03-0112-385/+133
| | | | | Add support for negotiating (more like "informing peer") about DNS. Various cleanup of warnings.
* Properly save and restore the terminal characters!jkh1996-03-011-2/+4
|
* This commit was generated by cvs2svn to compensate for changes in r14306,pst1996-03-015-3/+195
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import improved quickcam driver control utilities, andpst1996-03-015-3/+195
| | | | | | | | un-installed histogram program for checking driver timing.
* | Initialize a few more 'result' members in a few places (both in the v2wpaul1996-03-011-14/+61
| | | | | | | | | | and v2 service procedures). Also fixed the formatting in a few places to keep everything under 80 columns.
* | In ypproc_master_2_svc(), don't leave result.peer uninitialized whenwpaul1996-02-291-1/+3
| | | | | | | | returning an error.
* | sense of 'mask' was reversed in default case of no securenets file.adam1996-02-291-2/+2
| |
* | Clean up Makefile. Still needs -lcompat for insque/remque.wollman1996-02-281-11/+1
| |
* | Convert "time zone" to "timezone" in NAME sectionwosch1996-02-273-4/+4
| | | | | | | | Submitted by: obrien@cs.ucdavis.edu (David E. O'Brien)
* | Typo (vi -> v1).guido1996-02-261-2/+2
| |
* | Add support for NIS v1 client procedures. The following procedureswpaul1996-02-264-53/+260
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | are currently implemented: YPOLDPROC_NULL YPOLDPROC_DOMAIN YPOLDPROC_DOMAIN_NONACK YPOLDPROC_FIRST YPOLDPROC_NEXT YPOLDPROC_MATCH YPOLDPROC_POLL These are all implemented as wrappers around their v2 counterparts. The YPOLDPROC_PUSH, PULL and GET procedures are not implemented since a) I couldn't figure out exactly what to have them do, and b) I suspect they're used for doing map transfers between master and slave servers, which we already do using the v2 protocol anyway. This means we can server NIS v1 clients but can't be a master or slave with NIS v1-only servers. I think I'll get over it. :) The -k (sunos_4_kludge) flag and associated code has been removed since it is no longer needed. Also tweaked yp_access() to handle both sets of procedures and updated the man page.
* | Depend on libdisk.a.bde1996-02-252-4/+6
| |
* | Duh: remember to #include <stdlib.h> to pick up declarations forwpaul1996-02-251-3/+2
| | | | | | | | malloc() and free().
* | Add securenets support (uses same access control mechanism as ypserv,wpaul1996-02-245-12/+75
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | also controlled by /var/yp/securenets). Add -u flag to turn off the privileged port check done by yp_access(); some commercial systems (IRIX, Solaris 2.x, HP-UX, and probably others) don't use a reserved port for submitting yppasswd updates. If we always enforce the check, these client systems will be unable to submit updates to us. Document securenets support and -u flag in man page. Like ypserv, you can compile rpc.yppasswdd to use the tcpwrapper package instead of securenets if you want to.
* | Add real securenets support. By default, ypserv now uses /var/yp/securenetswpaul1996-02-245-39/+228
| | | | | | | | | | | | | | | | | | in the same was as the SunOS ypserv (same format, described in ypserv man page). If the user wants tcpwrapper style access control, they can recompile ypserv to use that instead. This way we get securenets without having to ship libwrap.a and tcpd.h with core FreeBSD distribution. If /var/yp/securenets doesn't exist, ypserv allows all connections.
* | Remove useless (for us) Makefiles. There were already other "Makefile.dist"peter1996-02-2256-6351/+0
| | | | | | | | | | | | | | files missing, so these shouldn't hurt. If somebody wanted to use sendmail 8.7 on their machine, they should use a clean dist anyway, not this one. Submitted by: wollman
* | Merge 8.7.3->8.7.4 changes onto mainline.peter1996-02-222-6/+13
| |
* | This commit was generated by cvs2svn to compensate for changes in r14182,peter1996-02-223-9/+29
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Update to sendmail-8.7.4. This fixes a DNS related security vulnerabilty.peter1996-02-225-15/+42
| | |
* | | Submitted by: John Hay -- John.Hay@csir.co.zajulian1996-02-201-2/+7
| | | | | | | | | | | | fix broken local routing .. (broken in previous patch)
* | | Initialize the argument list in the unpack() routine to zero.mpp1996-02-191-1/+2
| | | | | | | | | | | | | | | This prevents a core dump due to the stack being trashed if pkg_add is asked to process something that really isn't a package file.
* | | This commit was generated by cvs2svn to compensate for changes in r14125,peter1996-02-177-0/+1321
|\ \ \ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Import Jan 15 version of Andrew Gordon <andrew.gordon@net-tel.co.uk>'speter1996-02-177-0/+1321
| | | | | | | | | | | | | | | | | | | | | | | | rpc.statd. This is apparently fully functional and complete.
* | | | This commit was generated by cvs2svn to compensate for changes in r14123,peter1996-02-177-0/+1481
|\ \ \ \ | |/ / / | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Import Jan 15 version of Andrew Gordon <andrew.gordon@net-tel.co.uk>'speter1996-02-177-0/+1481
| / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | stub lockd. This implements just the protocol, but does not interact with the kernel. It says "Yes!" to all requests. This is useful if you have people using tools that do locking for no reason (eg: some PC NFS systems running some Microsoft products) and will happily report they couldn't lock the file and merrily proceed anyway. Running this will not change the reliability of sharing files, it'll just keep it out of everybody's face.
* | | XNS sort-of-support is no more.wollman1996-02-1322-3579/+1
| | |
* | | Add rpc.yppasswddwpaul1996-02-121-4/+5
| | |
* | | This commit was generated by cvs2svn to compensate for changes in r14062,wpaul1996-02-1211-0/+2155
| | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
* | | Add a ypset(8) man page.mpp1996-02-122-2/+87
| | | | | | | | | | | | Obtained from: NetBSD
* | | Another round of man page cleanups.mpp1996-02-125-30/+31
| | | | | | | | | | | | Down to only about 100 items left to cleanup! :-)
* | | Correct a bunch of man page cross references and generallympp1996-02-1114-32/+35
| | | | | | | | | | | | | | | | | | try and silence "manck". ncurses, rpc, and some of the gnu stuff are still a big mess, however.
* | | #include <kerberosIV/des.h> -> #include <des.h>markm1996-02-111-1/+1
| | |
* | | Submitted by: Masafumi NAKANE <masafumi@tky007.tth.expo96.ad.jp>wosch1996-02-101-2/+8
| | | | | | | | | | | | bugfix: chown home directory if don't copy dotfiles
* | | Remove netns and netiso, whatever it did here in the first place...phk1996-02-102-22/+2
| | |
OpenPOWER on IntegriCloud