Doug Rabson
cb3923e0ee
Merge WebNFS support from NetBSD.
...
Obtained from: NetBSD
1997-07-16 09:27:53 +00:00
Bruce Evans
28596d2346
Removed "hack to prevent overflow of a 32bit block number". Lite2 has a
...
better hack in ffs_vfsops.c. The hack here restricted the maximum file
size to 2^39 bytes (512GB). fs_bsize * 2^31 - 1 (16TB for the default
blocksize of 8K) would have been better. There is no good way to remove
this limit on old BSD4.4 file systems.
1997-07-13 15:13:07 +00:00
Peter Wemm
65b3003d2d
kill the undead
1997-07-13 14:26:00 +00:00
Sean Eric Fagan
a2a0088805
Fix a problem introduced with a recent change that caused a hang with
...
unreachable hosts. Note that most of this consists of telling SIGINT
and SIGALRM to interrupt the system call, instead of restarting them.
Also try to get rid of some potential races Bruce didn't like; hopefully
they aren't a problem (potential or otherwise) now.
Reviewed by: julian
1997-07-13 06:16:44 +00:00
Jordan K. Hubbard
571b472b20
Allow ldconfig to accept files (containing directory paths) as well as
...
directory paths.
Reviewed by: jkh & jdp
Submitted by: Hans Zuidam <hans@brandinnovators.com>
1997-07-11 14:45:41 +00:00
Julian Elischer
0e59c641dc
don't count packets as being transmitted when we know that the sendto()
...
failed (e.g. ENOBUFS)
1997-07-09 20:33:58 +00:00
Julian Elischer
515dd2fa3f
ping called printf() from a signal handler..
...
this is a NO-NO
re-arange to just set a "please die immediatly" flag in the signal handler
and handle this in the normal thread.
also handle ping -f better on slow links by backing off a bit when
we get a ENOBUFFS from the sendto().
1997-07-09 19:40:43 +00:00
Andrey A. Chernov
3f31fb330d
Move logwtmp(shutdown) call before any real action in death().
1997-07-08 11:51:11 +00:00
Andrey A. Chernov
1054bb1e43
1. Replace malloc+bzero by calloc
...
2. Revoke internal active session list only now, not whole /etc/ttys
1997-07-05 19:36:55 +00:00
Andrey A. Chernov
19e00c1345
Add -D_NEW_VFSCONF to eliminate compilation warning
1997-07-05 19:34:51 +00:00
Bruce Evans
c65c062f59
Document recent changes (config files and -D...) and not so recent changes
...
(bios drive number...).
Submitted by: mostly by yokota
1997-07-05 02:02:02 +00:00
Andrey A. Chernov
c3d7c52e04
death: revoke all lines listed in /etc/ttys instead of sending HUP
...
to all processes
1997-07-04 22:09:07 +00:00
Masafumi Max NAKANE
8c1d6cc7a3
Add Xref to nologin(5).
1997-07-04 06:31:52 +00:00
John Polstra
b7c2b28e0b
Die and stay dead. Ya got it?!
1997-07-04 01:30:09 +00:00
Andrey A. Chernov
423b6a39ff
Include <libutil.h> instead of private declarations
1997-07-03 11:37:43 +00:00
Andrey A. Chernov
a2ee73bcc6
Remove unneded cast in login_getclassbyname which cause warning
1997-07-02 13:53:31 +00:00
Bruce Evans
c377df7798
This commit was generated by cvs2svn to compensate for changes in r27163,
...
which included commits to RCS files with non-trunk default branches.
1997-07-02 00:25:26 +00:00
Bruce Evans
7ff7df18ef
Import Lite2's src/sbin, except for XNSrouted and routed. All relevant
...
files in src/sbin are off the vendor branch, so this doesn't change the
active versions.
1997-07-02 00:25:26 +00:00
Bruce Evans
25e43cba72
Import Lite2's src/sbin, except for XNSrouted and routed. All relevant
...
files in src/sbin are off the vendor branch, so this doesn't change the
active versions.
1997-07-02 00:25:26 +00:00
Philippe Charnier
41e964cb5d
Remove lines inside #ifdef 0/#endif.
1997-06-30 11:10:18 +00:00
Bruce Evans
1dce44f3ea
Configure static linkage in the normal way (default to -static using
...
NOSHARED?= yes).
1997-06-29 21:40:54 +00:00
Bruce Evans
2b7c05c611
Print fs_maxfilesize.
1997-06-29 20:59:03 +00:00
Bruce Evans
2bdcf54dc6
Prepare to remove the declaration of sys_siglist from <unistd.h>.
...
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>.
1997-06-29 20:38:38 +00:00
Paul Traina
4cbf8903a2
Attempt to open the device for reading before actually adding the device
...
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
1997-06-28 08:18:29 +00:00
John Hay
0fad62aead
Display tickadj in struct clockinfo.
1997-06-24 18:23:32 +00:00
Brian Somers
46b2c55966
Suggest using /etc/services entry rather than a
...
number in the "ipfw add divert" example.
1997-06-24 10:49:44 +00:00
Tor Egge
dc6f8d1bd5
Allow use of the name "swap" instead of an actual swap device.
...
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
1997-06-23 22:44:51 +00:00
Julian Elischer
135a88d805
Allow ipfw to look up service names from /etc/services (or NIS if turned on)
...
note.. this would be dangerous if your ipfw was blocking NIS access :)
Submitted by: archie@whistle.com (Archie Cobbs)
1997-06-23 22:32:13 +00:00
Steve Price
681e5e7a09
Show the real revision date and not the date that this
...
manpage is being viewed.
1997-06-23 04:03:49 +00:00
Jordan K. Hubbard
c1b792b226
sysconfig -> rc.conf
1997-06-22 14:40:27 +00:00
Brian Somers
24084f9bfc
Bring natd into main source tree now that the
...
pppd/natd combination works ok.
Submitted by: Ari Suutari <ari.suutari@ps.carel.fi>
1997-06-22 04:19:08 +00:00
Philippe Charnier
210a5dc89f
Sync usage string according to man page.
1997-06-19 14:44:24 +00:00
Philippe Charnier
49d430cc1f
Cosmetic in usage string.
1997-06-19 14:42:10 +00:00
Philippe Charnier
6da7f3783b
Use warn(3).
1997-06-19 14:40:41 +00:00
Philippe Charnier
64c12016e7
Use err(3). Add missing prototypes. Cosmetic in usage string.
1997-06-19 14:38:53 +00:00
Philippe Charnier
ac9df8c8e7
Use err(3). Add usage().
1997-06-19 14:33:42 +00:00
Philippe Charnier
a2bfcdfd76
Use err(3).
1997-06-19 14:28:32 +00:00
Philippe Charnier
b5f058fc9b
Various typos in man page. Cosmetic in usage string. Use err(3) instead
...
of fprintf. Remove unused variables.
1997-06-18 06:37:23 +00:00
Philippe Charnier
768b3fbd57
Sync man page and usage string. Remove unused -p option from getopt call.
1997-06-18 06:34:28 +00:00
Philippe Charnier
7766b145c4
Sync man page and usage string.
1997-06-18 06:33:11 +00:00
Philippe Charnier
eee9b17e46
Sync beetween man page and usage string.
1997-06-18 06:30:34 +00:00
Philippe Charnier
1b6a6c70bb
Fprintf -> warn.
1997-06-18 06:28:46 +00:00
Bruce Evans
d499a0ef65
Merge from Lite2.
...
- 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
1997-06-16 11:20:05 +00:00
Masafumi Max NAKANE
cc40ddd9f1
Typo fix.
...
PR: 3868
Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp>
1997-06-16 06:54:30 +00:00
Philippe Charnier
098166ed2d
Use err(3) instead of local copy.
1997-06-16 06:43:13 +00:00
Philippe Charnier
441f92071b
Use err(3) instead of local err() (a errx() like function).
1997-06-16 06:38:14 +00:00
Philippe Charnier
86eaffaf51
Use err(3).
1997-06-16 06:35:23 +00:00
Andrey A. Chernov
545cda7db5
Remove srandomdev fallback
1997-06-14 00:17:53 +00:00
Masafumi Max NAKANE
ac162c8fa6
Typo fix.
...
PR: 3854
Submitted by: Takahiro Yugawa <yugawa@orleans.rim.or.jp>
1997-06-13 20:58:09 +00:00
Philippe Charnier
b2d4098533
Remove __progname. Cosmetic in usage string.
1997-06-13 06:27:12 +00:00