Gordon Tetlow
8e05457085
Quiet warnings about non-existent scripts. My own fault for not testing my
...
own patches as well as I should.
2002-09-11 01:00:57 +00:00
Gordon Tetlow
e022d3b1aa
Fix syscons so it actually does start.
...
Reported by: keramida, ume
Submitted by: keramida
2002-09-09 22:40:34 +00:00
Mitsuru IWASAKI
5ea0b02d5a
Add an entry for corega WL PCCL-11.
...
PR: conf/42481
Submitted by: NINOMIYA Hideyuki <nin@jp.FreeBSD.org>
Approved by: imp
MFC after: 1 week
2002-09-06 17:45:36 +00:00
Gordon Tetlow
77e55efba0
Convert from ${CMD_OSTYPE}
to ${OSTYPE}. This saves a shell invocation on
...
OS-dependent case switches.
2002-09-06 16:18:05 +00:00
Gordon Tetlow
550f8fc46b
Add a support for a ${OSTYPE} which is set once in /etc/rc.subr. Also convert
...
all instances of `${CMD_OSTYPE}` to just using ${OSTYPE}. This saves us a
shell invocation on anything that is OS-dependent. I seriously doubt that we
will be spontaneously changing OS types during bootup.
2002-09-06 16:15:29 +00:00
Peter Wemm
f915be3bad
rev 1.6 claimed to add 'bootparams', but in fact added 'bootparamd' which
...
does not exist.
2002-09-06 01:23:31 +00:00
Bill Fenner
4716fa4ee9
Only try to initialize syscons if /dev/ttyv0 exists and it's not a pcvt.
2002-09-05 23:51:28 +00:00
Bill Fenner
57dedf04ca
Only try to run /usr/sbin/ispcvt if it exists and is executable.
2002-09-05 23:50:34 +00:00
Gordon Tetlow
adac8f8551
Add an archdep script and hook it up to the build.
...
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-09-05 20:29:18 +00:00
Gordon Tetlow
7ea5622b15
Hook bootparams up to the world
2002-09-05 20:15:08 +00:00
Gordon Tetlow
b0e6d55b9e
Introduce bootparamd into the boot scripts. Add a bootparamd_enable and
...
_flags to rc.conf
Submitted by: John Hay <jhay@zibbi.icomtek.csir.co.za>
2002-09-05 20:14:46 +00:00
Gregory Neil Shapiro
d87e0e8e23
Deprecate the use of sendmail_enable="NONE" as it adversely affects the
...
new rcNG effort.
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-09-03 22:15:57 +00:00
Gordon Tetlow
f048183067
nfsd doesn't die on SIGTERM but on SIGUSR1, correct script to kill nfsd with
...
the right signal.
2002-09-03 16:02:57 +00:00
Gordon Tetlow
b168ce8b63
We don't use single_mountd_enable anymore. It's just mountd_enable. I must
...
have missed this in my earlier sweep.
2002-09-02 21:20:58 +00:00
Gordon Tetlow
da5e455e1a
Only install the scripts that actually used on FreeBSD.
2002-09-02 20:49:26 +00:00
Gordon Tetlow
4376ad7708
Commit a revised sendmail script that works the same way as rc.sendmail.
...
This should also quell warnings when sendmail_enable="NONE"
2002-09-02 20:37:03 +00:00
Gordon Tetlow
67a399fda8
Turn rc_ng on by default now, it's time has come. While we are at it, I'd
...
like to thank Mike Makonnen for all his work on rcNG. Without him, none
of this would have been possible.
2002-09-02 16:35:01 +00:00
Hellmuth Michaelis
949f39b532
establish default values for /etc/rc.d/pcvt script
2002-08-30 13:01:42 +00:00
Hellmuth Michaelis
6b6c162a88
integrate pcvt configuration into the new /etc/rc.d startup system
...
PR: i386/7100
Reviewed by: Gordon Tetlow <gordon@FreeBSD.org>
2002-08-30 12:43:23 +00:00
Crist J. Clark
10f23b4ad0
Only create a temporary file if we are actually going to do something
...
in the script. Eliminates a bug where we create a temp file, but don't
delete it since the rm(1) is only done if the check is enabled.
PR: bin/40960
Submitted by: frf <frf@xocolatl.com>
MFC after: 3 days
2002-08-25 04:09:17 +00:00
Gordon Tetlow
4642178fcc
Print out a carriage return to make the screen output make more sense
...
Submitted by: mike@
2002-08-20 00:14:11 +00:00
Gordon Tetlow
eabdfedb1e
I missed the single_mountd_enable in rc.network.
...
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-15 03:29:19 +00:00
Gordon Tetlow
5b572aec21
Remove an accidental double chkdepend that snuck in during the last commit.
...
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-15 03:24:47 +00:00
Gordon Tetlow
8987faac82
Don't export variables from /etc/rc when doing rc_ng because the scripts
...
are sourced in a subshell.
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-14 05:58:44 +00:00
Gordon Tetlow
88f7d3e22b
Clean up the scripts to use the new variables:
...
xntpd_* -> ntpd_*
portmap_* -> rpcbind_*
Also change single_mountd_enable -> mountd_enable
Changing the mountd flags brings us closer to NetBSD.
All of the old variable names are shimmed so you can continue to use the
old variable name.
Finally make /etc/rc.d/mountd no longer dependent on nfs as there are
(apparently) other consumers of mountd.
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-14 05:44:32 +00:00
Gordon Tetlow
2ee93c5780
Clean up some variables that should have been done before:
...
xntpd_* -> ntpd_*
portmap_* -> rpcbind_*
Also change single_mountd_enable to mountd_enable.
We also include shims for all the old variable names.
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-14 05:37:15 +00:00
Jens Schweikhardt
f017edb1bf
o Test and change to the correct directory, /var/spool/.hoststat
...
o Bring if/then style in sync with /etc/rc scripts
PR: conf/41570
Submitted by: Konstantin M Volevatch <cox@rosnet.ru>
MFC after: 1 week
2002-08-12 11:09:01 +00:00
Jens Schweikhardt
84bd1082cb
Fix typos (s/seperat/separat/ et al); add FreeBSD ID.
...
Suggested by: bde
MFC after: 3 days
2002-08-12 10:04:32 +00:00
Ian Dowse
d64915d6e3
Remove some unnecessary sanity checks that break "sh MAKEDEV cd"
...
and others, because test(1) does not do shortcut evaluation.
Fix the same off-by-one error for acd*t* that revision 1.326 fixed
for other *cd devices.
Suggested by: bde
Reviewed by: bde
2002-08-10 22:03:58 +00:00
Ian Dowse
539354bed3
Permit the creation of just cd0 if desired. Previously it always
...
created cd1 as well due to an off-by-one error left over from
revision 1.249.
PR: conf/20436
Submitted by: Andre Albsmeier <andre.albsmeier@mchp.siemens.de>
MFC after: 1 week
2002-08-10 00:20:32 +00:00
Tony Finch
a7c397167e
Remove trailing whitespace.
2002-08-09 20:58:54 +00:00
Gordon Tetlow
897102c745
Make the othermta script DTRT when an mta startup script is not specified.
...
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-09 17:45:04 +00:00
Gordon Tetlow
5e6fcb8ccc
Correct comment. We use rpcbind now, not portmap
...
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-09 17:34:13 +00:00
Gordon Tetlow
e4bc448975
Correct comment
...
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-08-09 17:33:07 +00:00
Ruslan Ermilov
4e17db5b58
We no longer have a COPY.
2002-08-07 16:01:06 +00:00
Jake Burkholder
2e55bb64c3
Add example entries for ttya and ttyb (sab).
2002-08-04 19:16:13 +00:00
Gregory Neil Shapiro
b31d4126e3
If all file systems are marked nosuid, the line:
...
MP=`mount -t ufs | grep -v " nosuid" | awk '{ print $3 }' | sort`
sets ${MP} to an empty string so the next line:
set ${MP}
actually just dumps all of the shells variables to stdout (and therefore
the security report). Fixed by surrounding the code which goes through the
mounts with a test for an empty string before using ${MP}.
Reviewed by: brian
MFC after: 3 days
2002-08-03 22:33:34 +00:00
Robert Watson
844a8917d6
Introduce support for Mandatory Access Control and extensible
...
kernel access control.
Create directories for per-policy include files.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-08-01 22:37:08 +00:00
Hajimu UMEMOTO
ec2409ba60
FreeBSD has setkey in different location from NetBSD.
...
Submitted by: Mike Makonnen <makonnen@pacbell.net>
2002-07-31 16:39:19 +00:00
Marc Fonvieille
5fddf8bfc1
Correct URL to the Handbook
...
MFC after: 1 week
2002-07-31 10:05:37 +00:00
Ruslan Ermilov
d2893b161b
Drop support for COPY, -c has been the default mode of install(1)
...
for a long time now.
Approved by: bde
2002-07-29 09:40:17 +00:00
Dima Dorfman
527597b2d9
Stock -current has more than 300 files in /etc, so 255 inodes for the
...
/etc filesystem isn't enough; consequently, add "-i 4096" to the newfs
command for /etc. This results in 1022 inodes, which should be enough
for the forseeable future (although I don't know why we would ever
have more than 1000 files in a default /etc).
Silence by: -current
2002-07-28 03:41:53 +00:00
Dima Dorfman
cfab43190a
Add a period to the end of the "starting" message to be consistent
...
with the rest of the output during a boot.
2002-07-28 03:38:10 +00:00
Warner Losh
1c367fb5b2
Add a generic NANOSPEED wi card.
...
Submitted by: matt peterson
While I'm here, kill the flags 0x10000 on all the prism based cards.
Both stable and current figure this out on their own and we've had at
least one releases where this is the case.
2002-07-26 06:12:14 +00:00
Hajimu UMEMOTO
dcaecffe69
Change the default setting of an IPv4-mapped IPv6 address to off.
...
Requested by: many people
2002-07-25 15:44:01 +00:00
Hajimu UMEMOTO
9067589d53
be able to configure to run an IPv6 routing daemon even on
...
an end node (sync with rc.network6 1.30).
Approved by: gordon
2002-07-21 19:12:21 +00:00
Ruslan Ermilov
30b92dec43
sys.mk no longer includes bsd.own.mk.
2002-07-20 10:56:00 +00:00
Ruslan Ermilov
bff0acee63
Install scripts via FILES (purposedly not via SCRIPTS that would
...
strip the suffixes).
2002-07-18 12:33:01 +00:00
Ruslan Ermilov
0b87f79976
s/${INSTALL} -c/${INSTALL} ${COPY}/
2002-07-18 12:07:49 +00:00
Warner Losh
285e939e1e
The Compaq WL200 is a CL-PD6729 based pci card with a prism 2 pcmcia
...
card behind it (without the pcmcia form factor). This entry gets to
the point of attaching, but there's something wrong with the '29
support, so it doesn't quite work yet.
2002-07-18 06:01:35 +00:00