summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Import the latest hints file from Internic. The most important changedougb2002-11-061-13/+13
| | | | | is that J has moved, however I'm sure you'll all be very disappointed to hear that you can no longer retrieve this file via gopher.
* Force rpcbind to start even if it wasn't enabled. This solves the ypbindfenner2002-11-041-0/+10
| | | | | | problems people were having at startup. Approved by: re
* Restore /var/games; lots of ports' games use it.markm2002-11-041-0/+3
|
* Add IPv6 setup for ipfilter. `ipv6_ipfilter_rules' was addedume2002-11-023-9/+37
| | | | | | | | | to specify rules definition file for ipfilter. The default is /etc/ipf6.rules. If there is a file which is specified by 'ipv6_ipfilter_rules', IPv6 rule is installed. Reviewed by: Ronald van der Pol <Ronald.vanderPol@rvdp.org> MFC after: 1 week
* Wrap test case in an if statement to avoid crunching a return value.gordon2002-10-311-1/+3
|
* Remove Perl bits still lurking in BSD.local.dist. It is atobez2002-10-291-18/+0
| | | | | | responsibility of lang/perl5 to deal with those nowadays. Requested by: kkenn
* Tweak the warning language.obrien2002-10-291-4/+4
|
* Fix "err" usage.fenner2002-10-261-2/+1
| | | | | PR: 44284 Submitted by: Sergey Mokryshev <mokr@mokr.net>
* Fix two typos. Using "-eq" instead of "=" in a [ caused an error whenfenner2002-10-251-2/+2
| | | | | | | | an entry in /etc/sysctl.conf didn't exist. Fixing this exposed a minor typo "exits" vs. "exist". However, there doesn't appear to be any provision to run this with the "lastload" argument, meaning that the error will never appear.
* Add lt_LT.ISO8859-13ache2002-10-252-0/+6
|
* No need for this config file; games are gone.markm2002-10-251-20/+0
|
* Add newly-added sripts to FILES.thomas2002-10-251-1/+3
| | | | Reviewed by: roberto
* Add a new /etc/periodic/security script to check for packetsthomas2002-10-252-0/+56
| | | | | | | | rejected by ipfilter (510.ipfdenied), and a corresponding periodic.conf knob (daily_status_security_ipfdenied_enable). Reviewed by: roberto Approved by: re@
* Factor out code across various /etc/periodic/security scripts into athomas2002-10-256-99/+101
| | | | | | | separate file, /etc/periodic/security/security.functions. Reviewed by: roberto (mentor) Approved by: re@
* Fix a bug in MAKEDEV -- when creating /dev/usb, the code was usingluigi2002-10-241-2/+2
| | | | | | | | | | | | whatever random value was already in $unit. It happened to work because the variable is often unset, but this is not always the case e.g. when you call "MAKEDEV sio2 usb ..." This affects -stable as well. Reviewed by: n_hibma Silence from: re MFC after: 3 days
* # WARNING: lukemftpd does not support PAM, MAC, per-class nologin files,rwatson2002-10-241-0/+5
| | | | | | | | | | | # or any login.conf resource limits or features; use it only if this is # appropriate for your environment. If you require these features, use # the regular FreeBSD ftpd below. Discourage users from using lukemftpd if they rely any of these standard FreeBSD features that are fully supported by our native ftpd. There may be other features that are not yet supported that I have not yet discovered.
* Install mac_partition include files.rwatson2002-10-241-0/+2
| | | | | Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Invert the logic of the NO_MAKEDEV options to match the 5.0-R default install.phk2002-10-221-2/+2
|
* Hook up a sample mac.conf to the install. The sample basicallyrwatson2002-10-222-1/+18
| | | | | | | | tells applications to print labels for all of the TrustedBSD- generated policies, if they are present. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Do not build the majority of the games. Remaining are themarkm2002-10-203-24/+1
| | | | "utility-like" games and everyone's favourite, fortune(6).
* After much delay and anticipation, welcome RAIDFrame into the FreeBSDscottl2002-10-201-4/+10
| | | | | | world. This should be considered highly experimental. Approved-by: re
* Add sr_YU locale directoriesache2002-10-192-0/+12
| | | | Submitted by: Toni Andjelkovic <toni@soth.at>
* Install the include files in sys/dev/ofw.tmm2002-10-181-0/+2
|
* install "fast ipsec" include filessam2002-10-181-0/+2
|
* Exempt the "wheel group requirement" by default when su'ing to root ifrwatson2002-10-181-1/+1
| | | | | | | | | | the wheel group has no explicit members listed in /etc/group. This adds the "exempt_if_empty" flag to pam_wheel in the default configuration; in some environments, it may be appropriate to remove this flag, however, this default is the same as pre-pam_wheel. Reviewed by: markm Sponsored by: DARPA, Network Associates Laboratories
* Fix silly typo: loacal --> local.sobomax2002-10-171-1/+1
|
* Replace old, not-working URL for an online index of DNS blacklistkeramida2002-10-161-1/+2
| | | | | | | servers with a reference to the Google directory. Reviewed by: gshapiro MFC after: 1 week
* Remove root from the 'guest' group: missed in a previous pass.rwatson2002-10-141-1/+1
| | | | Spotted by: jhb
* Remove root from the kmem, sys, tty, and staff groups in the defaultrwatson2002-10-131-4/+4
| | | | | | | | | | | configuration. Root privileges override DAC on local file systems and therefore root does not generally need to be a member of a group to access files owned by that group. In the NFS case, require explicit authorization for root to have these privileges. Leave root in operator for dump/restore broadcast reasons; leave root in wheel until discrepencies in the "no users in wheel means any user can su" policy are resolved (possibly indefinitely).
* For consistency with other entries in group, don't put the daemon orrwatson2002-10-131-2/+2
| | | | | xten users in their groups explicitly--we pick that up from the gid field in master.passwd.
* s/dependancy/dependency/schweikh2002-10-124-5/+5
|
* Fix style bugs:schweikh2002-10-1252-257/+256
| | | | | | | | | | * Space -> tabs conversion. * Removed blanks before semicolon in "if ... ; then". * Proper indentation of misindented lines. * Put a full stop after some comments. * Removed whitespace at end of line. Approved by: silence from gordon
* Aesthetics: Output a prefix before sourcing rc.local as the old rcdd2002-10-121-0/+4
| | | | | | script did. Stuff in rc.local frequently has lines like "echo -n ' service_name'" which look ugly without a prefix and a trailing period. Likewise for rc.shutdown.local for consistency.
* Aesthetics: Most (all?) other messages output at boot time havedd2002-10-121-1/+1
| | | | trailing periods, so why shouldn't this one?
* When considering temporary files for deletion, don't examine the mtimejoerg2002-10-061-0/+1
| | | | | | | | | and atime only, but also the ctime. Otherwise, files extracted from tar or zip archives will immediately be declared stale since they've got their mtime reset to the original mtime. Reviewed by: brian MFC after: 1 week
* Remove matcd from MAKEDEV.scottl2002-10-051-32/+1
| | | | X-MFC after: ASAP
* add support for /dev/cryptosam2002-10-041-0/+7
|
* install sys/opencrypto include files in /usr/include/cryptosam2002-10-041-0/+2
|
* Fix all whitespace style bugs where spaces have been usedschweikh2002-10-031-15/+15
| | | | | | | where tabs should have been. Cut & paste disease? Spotted by: vi(1) tabstop=4 MFC after: 2 weeks
* In a diskless setup, rc.d/initdiskless may overwrite parts of /etc ondd2002-10-023-0/+11
| | | | | | | | | | | | a per-machine or per-cluster (with different ways of expressing what's part of a cluster) basis. In order for this to be effective, rc.conf has to be reread after initdiskless is finished. Implement this by adding a hook to etc/rc which rereads rc.conf by request. This can also be implemented by renaming initdiskless to initdiskless.sh and sourcing rc.conf there manually, but it was decided that, that would be uglier than a hook in etc/rc. Developed in concert with: gordon
* test -h is deprecated; use -L instead.ru2002-10-017-7/+7
| | | | PR: bin/40846
* - Recognize 'idt' interfaces.mdodd2002-09-301-1/+4
| | | | - The start command is 'atm_start' not 'start_cmd'.
* Recognize 'idt' interfaces.mdodd2002-09-301-0/+3
|
* SAMSUNG SWL-2000P PCI Cardimp2002-09-301-0/+6
| | | | Submitted by: Robert Dezorzo
* Psion Dacom Gold Card Ethernetimp2002-09-301-0/+6
| | | | Submitted by: Rick Hoppe
* Generic Prism2.5 cardimp2002-09-301-0/+6
| | | | Submitted by: Matt Peterson
* Belkin F5D5020 pccard.imp2002-09-301-0/+6
| | | | Submitted by: Philip Pereira
* Entry for I-O Data PCET/100-CLimp2002-09-301-0/+6
| | | | Submitted by: MATSUO Masahiko-san
* oops, last second botch: fix extra 'i'imp2002-09-291-3/+3
|
* o Belkin wireless cardimp2002-09-291-8/+23
| | | | | | | | | | | | | | | PR: 38919 Submitted by: Tommy Johnson o IBM IDE CDROM PR: 39537 Submitted by: Kevin Van Maren o T-Sunus 130 card PR: 41802 Submitted by: Oliver Schneider
OpenPOWER on IntegriCloud