| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
| |
that the keys are currently generated by computing the MD5 checksum of 512
bytes read from /dev/random, and are passed to gbde on the command line.
Sponsored by: Teleplan AS
|
| |
|
| |
|
|
|
|
| |
document the options.
|
|
|
|
|
| |
PR: docs/56488
Submitted by: Yoshihiko Sarumaru <mistral@imasy.or.jp>
|
| |
|
|
|
|
|
|
|
|
|
| |
use the atmconfig(8) utility instead of route(8) to install those routes.
For this we need a new rc.conf variable natm_static_routes that works
just like static_routes except that the referenced routes use the syntax
of atmconfig(8).
Okay'ed by: mtm
|
|
|
|
| |
the 'background_dhclient' better.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
for the harp(4) pseudo driver and for loadable native HARP drivers
(like hfa_pci).
To use harp(4) the rc variable natm_interfaces must be set to the
list of NATM interfaces to be used for HARP. These interfaces
will be brought up with ifconfig and the harp(4) will be loaded.
To use loadable native HARP drivers atm_load must be set to
the list of drivers to load.
Reviewed by: mtm, gordon (partly)
|
| |
|
|
|
|
| |
Approved by: jeff (mentor)
|
|
|
|
| |
Pointed out by: Simon L. Nielsen <simon@nitro.dk>
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
take advantage of the rc.subr(8) glue. They are renamed dhclient_program
and dhclient_flags.
o Rename them in rc.conf(5)
o Rename them in /etc/defaults/rc.conf
o Add the deprecated variables to /etc/rc.subr
o Isolate the use of the 'command' variable to the
NetBSD specific parts in /etc/rc.d/dhclient.
o Now that dhcp_flags has also been renamed it will
be applied properly by rc.subr(8) glue code.
Reported by: John Nielsen <john@jnielsen.net>
|
| |
|
| |
|
|
|
|
| |
Approved by: re (blanket)
|
|
|
|
| |
Approved by: re (blanket)
|
|
|
|
| |
nor is it available from the ports tree.
|
|
|
|
| |
Noticed by: bde
|
| |
|
|
|
|
|
|
| |
s/spppconfig/spppcontrol/
Submitted by: "Simon L. Nielsen" <simon@nitro.dk>
|
|
|
|
| |
Approved by: makrm (mentor)
|
|
|
|
| |
Submitted by: Simon L. Nielsen <simon@nitro.dk> (original version)
|
|
|
|
| |
Submitted by: Simon L. Nielsen <simon@nitro.dk>
|
|
|
|
|
| |
PR: 50023
Submitted by: Simon L.Nielsen <simon@nitro.dk>
|
|
|
|
|
| |
automatically at boot time. Associated rc.conf(5) knobs and
documentation are included.
|
| |
|
|
|
|
|
|
|
| |
instead.
Approved by: murray (mentor)
MFC After: 2 days
|
|
|
|
| |
Reviewed by: ru
|
|
|
|
| |
Not objected to by: -doc
|
|
|
|
|
|
|
| |
value.
PR: conf/31280
MFC after: 3 days
|
|
|
|
|
| |
Approved by: markm (mentor)
Noticed by: ru
|
|
|
|
|
|
|
|
| |
some time now.
Document all knobs introduced by rc.d
Approved by: markm (mentor)
Reviewd by: gordon (earlier revision)
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
background fsck. The delay defaults to sixty seconds to allow
large applications such as the X server to start before disk I/O
bandwidth is monopolized by fsck.
Submitted by: Brooks Davis <brooks@one-eyed-alien.net>
Sponsored by: DARPA & NAI Labs.
|
|
|
|
| |
Approved by: re
|
|
|
|
| |
Approved by: re
|
|
|
|
| |
Submitted by: dougb
|
| |
|
|
|
|
| |
startup system.
|
|
|
|
|
|
| |
xntpd -> ntpd
single_mountd_enable -> mountd_enable
portmap -> rpcbind
|
|
|
|
|
| |
PR: docs/35967
Submitted by: Gary W. Swearingen <swear@blarg.net>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
again."
As an alternative to sendmail_enable=NONE, solve the boot time problem
for non-sendmail users completely by moving all of the sendmail startup
code from /etc/rc to /etc/rc.sendmail. The source for that script will
be kept in src/etc/sendmail/rc.sendmail so make.conf's NO_SENDMAIL will
prevent it from being installed. A new rc.conf variable,
mta_start_script specifies the script to run to start the user's
preferred MTA. For backward compatibility, it will default to
/etc/rc.sendmail. The specified script is called out of /etc/rc after
checking to make sure it exists. A new rc.sendmail.8 man page has also
been added which now houses the sendmail_* variable descriptions
formerly in rc.conf.5.
Use /etc/rc.sendmail in /etc/mail/Makefile to reduce code duplication.
Reviewed by: -current, -stable, obrien, peter, ru
MFC after: 1 week
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
at boot time.
Instead of rc.conf's sendmail_enable only accepting YES or NO, it can now
also accept NONE. If set to NONE, none of the other sendmail related
startup items will be done.
Remove an extra queue running daemon might be started that wasn't necessary
(it didn't hurt anything but it wasn't needed).
The new logic is:
# MTA
if ${sendmail_enable} == NONE
# Do nothing
else if ${sendmail_enable} == YES
start sendmail with ${sendmail_flags}
else if ${sendmail_submit_enable} == YES
start sendmail with ${sendmail_submit_flags}
else if ${sendmail_outbound_enable} == YES
start sendmail with ${sendmail_outbound_flags}
endif
# MSP Queue Runner
if ${sendmail_enable} != NONE &&
[ -r /etc/mail/submit.cf] && ${sendmail_msp_queue_enable} == YES
start sendmail with ${sendmail_msp_queue_flags}
endif
Discussed with: Thomas Quinot <Thomas.Quinot@Cuivre.FR.EU.ORG>,
Christopher Schulte <schulte+freebsd@nospam.schulte.org>
MFC after: 1 week
|
| |
|
|
|
|
| |
MFC after: 3 days
|