summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a couple of format strings to match the change of pid_t from longbde1996-04-131-1/+1
| | | | | | to int32_t. I only fixed the ones that I noticed the warnings for. Perhaps most of the format strings are correct now because they were wrong before. Except of course if int32_t isn't compatible with `int'.
* default to udp if no flags specified...closes PR#bin/759scrappy1996-04-131-0/+1
| | | | - should this be documented in the man page?
* removed xref to icheck(8), ncheck(8) as they don't existscrappy1996-04-111-3/+1
|
* Fix a core dump when the user gives "-w" without an "="smpatel1996-04-101-1/+4
|
* English corrections from jdp.ache1996-04-091-18/+23
| | | | Add main purpose description (MSDOS timestamps)
* Do not install the now unsupported netns and netisompp1996-04-081-1/+1
| | | | | related man pages. Comment out cross references to those man pages from other man pages.
* Correct some man page xrefs, and some other minor changes to bring somempp1996-04-082-29/+29
| | | | | | man pages up to mdoc guidelines and fix some minor formatting glitches. Also fixed a number of man pages to not abuse the .Xr macro to display functions and path names and a lot of other junk.
* Correct some man page cross references and file location references.mpp1996-04-074-12/+12
|
* Don't immediately give up if a single read() or write() wasn'tjoerg1996-04-061-5/+31
| | | | | sufficient to transfer all the data from stdin, or to stdout. Working on pipes causes further fragmentation.
* More info and more correctionsache1996-04-051-4/+8
|
* Describe new adjkerntz variant + various changes from jdpache1996-04-051-50/+91
|
* Detect if /etc/wall_cmos_clock gone while adjkerntz paused.ache1996-04-051-1/+6
|
* Dynamically sense /etc/wall_cmos_clock presence/absenseache1996-04-051-20/+8
|
* Fix error with multiply 'adjkerntz -a' copies running.ache1996-04-051-32/+86
| | | | | Manage adjkerntz kernel variable even for UTC clocks. Code cleanup.
* Add a small message to the ``CAVEATS'' section saying if you get thegpalmer1996-04-033-3/+27
| | | | | warning about the root directory, then you could corrupt your filesystem if you write to it. Someone, please, feel free to improve this :-)
* recognize "allow", "accept" and "pass"phk1996-04-031-6/+8
| | | | add new feature for "established"
* A couple of bug-fixes.phk1996-04-021-4/+4
| | | | | Reviewed by: phk Submitted by: "Frank ten Wolde" <franky@pinewood.nl>
* Move rpc.statd and rpc.lockd to usr.sbin via repository copy as perpeter1996-04-0214-2530/+0
| | | | | | discussionn when they were initially added some time ago. These programs are not needed before nfs is up and running to possibly mount /usr so they dont need to be static and on the root fs.
* Some minor tweaks for statdpeter1996-04-014-101/+25
| | | | | | - use rpcgen to generate unmodified code instead of havinf it in the repository - use "natural" function names to avoid conflicts with prototypes etc.
* Tweaks for the stub lockd.peter1996-04-016-242/+46
| | | | | | | - Use rpcgen to generate the unmodified boilerplate code rather than having it in the repository. - Eliminate the conflicting function names by changing them to their "natural" rpcgen generated names
* Fixed a type to match Lite2's fixed-width type changes.bde1996-03-191-1/+1
| | | | Obtained from: 4.4BSD-Lite2
* Change the messages slightly when there is no "mount_type" executableasami1996-03-152-8/+38
| | | | | | | | | | | | | | | | | | | | | found when the user specifies "mount -t type". Instead of printing out one message for each path element (/sbin, /usr/sbin), it prints out: mount: exec mount_type not found in /sbin, /usr/sbin: No such file or directory The code is quite long for such a stupid little piece of aesthesism but it is very straghtforward so I guess it's ok. Besides, I don't want to do a "char foo[100];" and have malloc break down when someone decides to add a few more paths to a variable that's far apart from this code. :) By the way, there is no malloc() off-by-one error for the '\0' at the end of the string although I don't explicitly add 1 to the length. The code allocates strlen(path element)+2 bytes for each path element, and doesn't use the last two bytes (for the delimiting ", "). Reviewed by: the list (I hope)
* Properly distinguish 3 different cases:ache1996-03-122-10/+23
| | | | | No redial command. Empty redial command. Non-empty redial command. Pointed-by: bde
* Re-open line after hangup in any caseache1996-03-121-15/+2
|
* Backout my changes to disallow "mount /mnt /mnt" until I can verifympp1996-03-112-44/+0
| | | | | that nfs mounts work again (I locked up my home machine testing it and can't see what happened until I get home from work tonight).
* Only restrict the user from doing something like "mount /mnt /mnt"mpp1996-03-112-8/+14
| | | | | for file system types that actually cause a panic (ufs, msdos, cd9660). This makes /proc mountable again.
* Do not allow the caller to specify the same path for the specialmpp1996-03-102-0/+38
| | | | | | | | | | | | | device file and the mount point. This prevents the "unexpected recursive lock" panic from happening. This is a temporary fix. A kernel fix would be much much more ugly than this, and still wouldn't be the "right" way to fix it. After some of Terry's file system rework is installed, it will be possible to properly fix this problem in a clean manner. Until then, this change should prevent use from getting a problem report on this every month or so (and I just noticed that someone in one of the freebsd news groups was complaining about this problem, too).
* Prepare to eliminate multiply uucplock.c copiesache1996-03-041-16/+33
|
* Close PR#17. This may be a contraversal fix in that now mount willjkh1996-03-032-10/+2
| | | | | | | | | | | | | | spit out two error lines for a bogus filesystem type, e.g: root@time-> mount -t foo /dev/sd0a /mnt mount: exec /sbin/mount_foo for /mnt: No such file or directory mount: exec /usr/sbin/mount_foo for /mnt: No such file or directory But I would submit that if you're even going to scan multiple directories for a mount_foo (which I actually think is somewhat bogus - if it's not in /sbin, you're probably in big trouble anyway), you should emit an error for each one. I got multiple complaints (in addition to the PR) that the existing behavior was very confusing.
* Silence some cc -Wall warnings in quotacheck.mpp1996-02-271-8/+10
|
* Fix quotacheck to not do a bunch of unneeded fseeks if thempp1996-02-271-2/+9
| | | | | quota file information is accurate. This makes it about twice as fast when the uid name space is very large.
* Bring in some of Paul K's fixes for ldconfig from NetBSD-current.pst1996-02-261-10/+30
| | | | | | | | | | | | | This solves the problem of being unable to use shared libraries with dots in their names before the ".so.<version>" code. This should be brought into -stable. There are more changes from Paul that look like they should be included, but they change the format of the hints file, so I'm not going to bring them in now (but we should in the future). Obtained from: pk@netbsd.org
* Update to match kernel code.phk1996-02-243-100/+252
|
* A new ipfw program that can set and control the new features.phk1996-02-242-969/+400
| | | | An almost correct usage is printed.
* Update -current ipfw program as well.phk1996-02-232-170/+29
| | | | I hope it all compiles...
* Print out an informative message if the verbose option is givenmpp1996-02-212-3/+7
| | | | | | | | | | | and an unknown uid/gid is found in the file system. This is useful if you wind up with a file in your file system that has a uid that is extremely large, since quotacheck will wind up running a very very long time due to it not handling large gaps in uids very well (this is a problem that should be addressed some day). Update the man page to reflect that fact the the -v flag now prints some additional diagnostic messages.
* Fix route to check if inet_addr and inet_network return INADDR_NONE,mpp1996-02-171-3/+3
| | | | instead of -1 which is never returned by those routines.
* Call unit-command -1 <new> first time connected, close PR 569ache1996-02-172-9/+18
|
* 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-133-30/+73
|
* Document that the firewall will no longer reorder the rules.phk1996-02-131-3/+8
|
* The DES-based init(8) belongs to the "des" distribution.joerg1996-02-131-1/+2
|
* Another round of man page cleanups.mpp1996-02-121-2/+3
| | | | Down to only about 100 items left to cleanup! :-)
* Removed the boot_*(8) man pages for machines we don't support:mpp1996-02-125-689/+1
| | | | hp300, sparc, tahoe, and vax
* Fixed some minor formatting problems to silence manck some more.mpp1996-02-121-2/+2
| | | | | | | | | Corrected some bogus cross references to man pages that we don't/won't have and either deleted them, or found a more appropriate man page that we do have. Various other minor changes to silence manck. Manck is currently down to about 200 lines of errors, down from the 500 - 600+ when I started all this.
* Correct a bunch of man page cross references and generallympp1996-02-112-5/+5
| | | | | | 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-112-2/+2
|
OpenPOWER on IntegriCloud