summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* Remove lines inside #ifdef 0/#endif.charnier1997-06-302-64/+2
|
* Configure static linkage in the normal way (default to -static usingbde1997-06-291-2/+2
| | | | NOSHARED?= yes).
* Print fs_maxfilesize.bde1997-06-291-2/+2
|
* Prepare to remove the declaration of sys_siglist from <unistd.h>.bde1997-06-291-2/+2
| | | | | | It should only be declared in <signal.h> if at all. Modload used to depend on getting it from <unistd.h> because it only included <sys/signal.h>.
* Attempt to open the device for reading before actually adding the devicepst1997-06-281-1/+14
| | | | | | | | | to the session list. If the device comes back as unconfigured, just ignore that line in /etc/ttys. If someone HUP's init, we'll try again. This change stops getty's from hanging on vty and sio ports that don't exist, either due to LKM drivers not being loaded, or probes failing. Reviewed by: bde
* Display tickadj in struct clockinfo.jhay1997-06-241-3/+3
|
* Suggest using /etc/services entry rather than abrian1997-06-241-4/+5
| | | | number in the "ipfw add divert" example.
* Allow use of the name "swap" instead of an actual swap device.tegge1997-06-231-0/+31
| | | | | | | | This makes configuration of mfs /tmp on diskless clients more intuitive for people like me, that have used this feature on NetBSD and SunOS. Using the -T option and /dev/null, while already supported, is neither intuitive nor documented in the handbook. Obtained from: NetBSD
* Allow ipfw to look up service names from /etc/services (or NIS if turned on)julian1997-06-232-15/+47
| | | | | | note.. this would be dangerous if your ipfw was blocking NIS access :) Submitted by: archie@whistle.com (Archie Cobbs)
* Show the real revision date and not the date that thissteve1997-06-238-10/+10
| | | | manpage is being viewed.
* sysconfig -> rc.confjkh1997-06-221-3/+3
|
* This commit was generated by cvs2svn to compensate for changes in r26781,brian1997-06-227-0/+1969
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Bring natd into main source tree now that thebrian1997-06-227-0/+1969
| | | | | | pppd/natd combination works ok. Submitted by: Ari Suutari <ari.suutari@ps.carel.fi>
* Sync usage string according to man page.charnier1997-06-191-4/+3
|
* Cosmetic in usage string.charnier1997-06-191-1/+1
|
* Use warn(3).charnier1997-06-191-7/+8
|
* Use err(3). Add missing prototypes. Cosmetic in usage string.charnier1997-06-191-11/+20
|
* Use err(3). Add usage().charnier1997-06-191-34/+21
|
* Use err(3).charnier1997-06-191-21/+13
|
* Various typos in man page. Cosmetic in usage string. Use err(3) insteadcharnier1997-06-182-34/+22
| | | | of fprintf. Remove unused variables.
* Sync man page and usage string. Remove unused -p option from getopt call.charnier1997-06-181-2/+2
|
* Sync man page and usage string.charnier1997-06-181-10/+4
|
* Sync beetween man page and usage string.charnier1997-06-182-4/+4
|
* Fprintf -> warn.charnier1997-06-181-8/+5
|
* Merge from Lite2.bde1997-06-163-133/+104
| | | | | | | | | | | | - use new getvfsbyname() interface. - new -A option, like -a except only mounted file systems are unmounted. All non-cosmetic FreeBSD changes in umount.c, except ignoring of realpath() failures, went away because they are done better in Lite2. realpath() failures must be ignored so that non-pathnames like "<above>:/foo" and "host:/bar" get as far as mount(2). Reviewed by: dfr
* Typo fix.max1997-06-161-2/+2
| | | | | PR: 3868 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
* Use err(3) instead of local copy.charnier1997-06-161-7/+13
|
* Use err(3) instead of local err() (a errx() like function).charnier1997-06-161-21/+19
|
* Use err(3).charnier1997-06-161-26/+12
|
* Remove srandomdev fallbackache1997-06-142-4/+2
|
* Typo fix.max1997-06-131-2/+2
| | | | | PR: 3854 Submitted by: Takahiro Yugawa <yugawa@orleans.rim.or.jp>
* Remove __progname. Cosmetic in usage string.charnier1997-06-131-11/+6
|
* Use err(3).charnier1997-06-131-8/+7
|
* Add Id. Staticize usage function. Typo in usage string.charnier1997-06-112-3/+4
|
* Remove __progname. Make -f a no-op flag as stated in the man page. Removecharnier1997-06-111-20/+17
| | | | unused variables.
* Add Id. Cosmetic in usage string.charnier1997-06-101-3/+6
|
* Add Id. Use err(3). Costmetic in usage string.charnier1997-06-104-112/+110
|
* Remove __progname. Cosmetic in usage string.charnier1997-06-101-12/+8
|
* Add Id, add usage function.charnier1997-06-101-8/+19
|
* Use errx instead of fprintf/exit.charnier1997-06-041-15/+6
|
* Expected to be found in /sbin not /etc.charnier1997-06-041-2/+2
|
* Number partitions 1-4, not 0-3.brian1997-06-034-60/+60
| | | | | | Any existing config files (using the -f option) will need to be changed although using the old files will usually result in an error (partition 0 is invalid).
* Allow the 'async' mount flag.dfr1997-06-031-1/+2
|
* Don't overflow when calculating the size in MB of a partition.gibbs1997-06-022-6/+24
| | | | No more 241MB 4+ gig partitions for me!
* Submitted by: Whistle Communications (archie Cobbs)julian1997-06-023-250/+557
| | | | | | | | | | | | | | | these are quite extensive additions to the ipfw code. they include a change to the API because the old method was broken, but the user view is kept the same. The new code allows a particular match to skip forward to a particular line number, so that blocks of rules can be used without checking all the intervening rules. There are also many more ways of rejecting connections especially TCP related, and many many more ... see the man page for a complete description.
* Use realpath on the source as well as the destination.dfr1997-05-232-6/+14
|
* Typo in previous change.dfr1997-05-232-2/+2
|
* Generalise the previous change so that only NFS hostnames are looked up.dfr1997-05-161-2/+2
| | | | | PR: bin/3588 Suggested by: Joerg Wunsch <joerg_wunsch@uriah.heep.sax.de>
* Typo.max1997-05-151-1/+1
| | | | | PR: 3600 Submitted by: Josh Gilliam <soil@quick.net>
* Minor rewording of the examples section.alex1997-05-151-2/+3
|
OpenPOWER on IntegriCloud