summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Pedantic change: "reboot" -> "boot"davidn2000-05-111-1/+1
|
* Fix the linking in my `sa' changes.obrien2000-05-101-3/+3
| | | | Submitted by: Christian Weisgerber <naddy@mips.inka.de>
* Fix some whitespace brokeness.. (usio and ctx)peter2000-05-091-3/+3
|
* Finish off replacing the rest of the duplicate mknod's with hard links.peter2000-05-091-33/+19
|
* Use printf (shell builtin) instead of cut - cut isn't in /bin.peter2000-05-081-4/+4
| | | | This should fix the ttyA* and cuaA* up to the maximum possible 128 nodes.
* Add [en]sa devices for othoginality.obrien2000-05-081-6/+16
|
* Add an explicit rule number to natd so you do not end up with twops2000-05-081-1/+1
| | | | | | rule 100's. Submitted by: Jan Koum <jkb@yahoo-inc.com>
* Add firewall_logging knob to enable/disablle events logging, disabledache2000-05-068-0/+71
| | | | | by default. Needed mainly for ipfw kernel module to enable logging disabled there.
* Fix comparison of units.asmodai2000-05-061-1/+1
| | | | Submitted by: Maxim Sobolev <sobomax@altavista.net> on -current
* Add IP addresses to the rules required to "Allow anything fromsheldonh2000-05-051-3/+4
| | | | | | localhost", since portmap(8) is included in "anything". Submitted by: Doug Barton <Doug@gorean.org>
* Directory renamed in /usr/share/calendar: ru_SU.KOI8-R -> ru_RU.KOI8-Rphantom2000-05-041-1/+1
|
* Disconnect libm from the build tree. It's broken, not beingjoe2000-05-021-4/+0
| | | | | | | | | maintained, and has been replaced by msun. The libm sources shouldn't be removed just yet as there are parts that should be merged into msun first. PR: misc/17848 Discussed with: phk & bde
* Cause modules to build with the kernel build. Modules are removedchuckr2000-05-021-0/+1
| | | | | | | | | | from the sys Makefile's SUBDIRs. This is conditioned in make.conf by the NO_MODULES variable and the existence of the modules directory. The actual location of the modules is not modified. Changes in Makefiles only, this does not affect Peter's recent changes. Reviewed by: Peter Wemm, who warned me I would get some flack, and he had the good idea for the NO_MODULES variable.
* Fix a couple of easy cases where we make two identical devices.. onepeter2000-05-011-4/+4
| | | | | | /dev/xxx and one /dev/rxxx. This changes them to a hard link so that less inodes are consumed and so that the permissions are always in sync. There are lots more of these still.
* Add lib/X11/locale/zh_TW.Big5.asami2000-04-292-0/+4
| | | | Found by: bento
* remove last empty lineache2000-04-271-1/+0
|
* Add to defaults/rc.conf a new function source_rc_confs which rcsheldonh2000-04-2711-12/+36
| | | | | | | | | | | | | | | | | scripts may use to source safely overrides in ${rc_conf_files} files. This protects users who insist on the bad practice of copying /etc/defaults/rc.conf to /etc/rc.conf from a recursive loop that exhausts available file descriptors. Several people have expressed interest in breaking this function out into its own shell script. Anyone who wants to embark on such an undertaking would do well to study the attributed PR. PR: 17595 Reported by: adrian Submitted by: Doug Barton <Doug@gorean.org>
* Back out the hook to execute the file ${firewall_type}. The intendedbsd2000-04-271-3/+1
| | | | | | | | | | purpose of the hook was to provide the ability for a shell program to instantiate the firewall rules instead of forcing them to be statically coded. This functionality was already present through the use of ${firewall_script}, and I see no need to keep the ${firewall_type} hook around. Reminded by: Dag-Erling Smorgrav <des@freebsd.org>
* Replace the /dev/stdin, /dev/stdout, and /dev/stderr nodes withchris2000-04-261-3/+3
| | | | | | | | | symlinks to fd/0, fd/1, and fd/2 respectively. This will make things easier for upcoming changes to fdesc (and does not break anything for the current state of things) and hopefully its position as the replacement for our existing static /dev/fd nodes. Suggested (and reviewed) by: phk
* Add /bin/tcshache2000-04-201-0/+2
|
* Document NO_TCSH knob.obrien2000-04-171-0/+1
|
* Allow the firewall rules to be established by a shell script insteadbsd2000-04-161-1/+3
| | | | | | | of forcing them to be an 'ipfw' rules file. This allows one to determine interface addresses dynamically, etc. The rule is if the file referenced by ${firewall_type} is executable, it is sourced, but if it is just readable, it is used as input to 'ipfw' like before.
* Remove pccard.conf.sample from Makefile, sorry I forgot.iwasaki2000-04-151-1/+1
|
* Remove src/etc/pccard.conf.sample. This file is no longer used.iwasaki2000-04-151-1057/+0
| | | | | | The pccardd default config file is changed to /etc/defaults/pccard.conf. Approved by: imp
* Document NO_BIND toggle flag.asmodai2000-04-101-0/+1
| | | | | PR: 17710 Submitted by: Mark Huizer <xaa+sendpr@dohd.cx>
* Add a step for showing changes in the way filesystems are mountedsheldonh2000-04-061-0/+17
| | | | | | | today from the way they were mounted yesterday. PR: 17155 Submitted by: "Crist J. Clark" <cjc@cc942873-a.ewndsr1.nj.home.com>
* Two changes:imp2000-04-061-16/+41
| | | | | | 1) Move an cards to after aic, since an sorts after aic. 2) Add awi cards for the new awi drivers. This is a wireless pcmcia card.
* Removed unnecessary comma in stf addr printf in hex format,shin2000-04-062-2/+2
| | | | | | which I mysteriously added. Submitted by: ume
* MFPAO: support wildcard entry for generic serial and fixediwasaki2000-04-051-0/+20
| | | | | | | | | disk as fallthrough entry. Submitted by: MIHIRA Sanpei Yoshiro <sanpei@sanpei.org>, iwasaki Reviewed by: imp, -mobile ML and nomads ML in Japan Obtained from: http://www.freebsd.org/~iwasaki/pccard/pccardd-generic.diff http://home.jp.freebsd.org/~sanpei/4-current/usr.sbin-pccard-pccardd.diff
* Do not report blocked out NIS password entries as passwordless.sheldonh2000-04-051-1/+1
| | | | Submitted by: "Sean O'Connell" <sean@stat.Duke.EDU>
* Add an example of how to tweak CXXFLAGS in a make.conf file.obrien2000-04-041-0/+6
| | | | | This is in responce to several people breaking their world builds by incorrectly assigning to CXXFLAGS.
* Enable etc/defaults/pccard.conf which is default configuration fileiwasaki2000-04-033-2/+9
| | | | | | | | | | for pccardd. Please install /etc/defaults/pccard.conf and update /etc/defaults/rc.conf as well. Note that old pccard.conf.sample still remains for while but no longer to be maintained. Reviewed by: imp, -mobile ML and nomads ML in Japan.
* Entry for Zip drive no longer needed. We do automatic rescans on connectn_hibma2000-04-031-10/+0
| | | | now.
* Add a NO_MAILWRAPPER knob to make.conf and wrap it aroundsheldonh2000-03-311-0/+1
| | | | | | | mailwrapper(8) for folks who find it annoying to have their development version of sendmail blown away by ``make world''. PR: 17394
* Fix english.shin2000-03-291-1/+1
| | | | Specified by: sheldonh
* Avoid using sed and awk in configure script.shin2000-03-282-8/+12
| | | | | | TODO: also replace other sed and awk usages. Submitted by: wollman
* Add a configuration options which enable/disable IPv4 mapped IPv6 addrshin2000-03-283-0/+24
| | | | | | support. Suggested and Reviewed by: ume
* Clarify the disposition of hosts.deny and provide a logicallycwt2000-03-281-6/+5
| | | | | | consistent portmap example rule. Reviewed by: obrien, markm Obtained-good-ideas from: obrien
* Add a sysctl to specify the amount of UDP receive space NFS shoulddillon2000-03-278-0/+36
| | | | | | | | | | | reserve, in maximal NFS packets. Originally only 2 packets worth of space was reserved. The default is now 4, which appears to greatly improve performance for slow to mid-speed machines on gigabit networks. Add documentation and correct some prior documentation. Problem Researched by: Andrew Gallatin <gallatin@cs.duke.edu> Approved by: jkh
* s/grep/grep -qdan2000-03-271-1/+1
| | | | Submitted by: ru
* Update CFLAGS documentationkris2000-03-271-1/+7
|
* Doug Ambrisko recommends not using minor 0-127 yet (Hardware flown_hibma2000-03-261-1/+2
| | | | control)
* Add the entry for usio, major 138n_hibma2000-03-261-0/+6
|
* o Improve the comment concerning rebuilding the database using cap_mkdb --rwatson2000-03-261-6/+4
| | | | | | | it's not a speed thing, it's a correctness thing :-) o Reorder the path slightly to be more consistent Reviewed by: jhb
* Comb through my mailboxes, trying to merge all the entries that othersimp2000-03-262-10/+156
| | | | | | | | | | | | | | | | | | | have set me. This goes from now back to sometime in January 2000. Last years' entries might result in more. But it will need to wait for another time. o XJEM3288 entry (Ron Rosson <insane@lunatic.oneinsane.net>) o Fix Xircom CreditCard Modem 56 entry ("Juriy Goloveshkin <juriy@avias.com> ") o Add pcmcia cd-rom entry from juriy as well, even though it doesn't work o Add Intellegent Modem (sos) o 3C562 entries (Marat Fayzullin <fms@cs.umd.edu>) o Digiteam expresso modem (joerg_wunsch) o RFI Hotline serial card (joerg_wunsch) o EP401 Ethernet (jkoshy) o Novatel wireless modem (nsayer) o Intel modem 2400+ (aka US Roboitcs Worldport 14400) (sos) o Option I18n GSM fax modem (markm) o Toshiba SLIMV90 (roberto)
* Fix a misspelling in the comments for tha IPv6 auth service and change themjhb2000-03-251-2/+2
| | | | to more closely resembles those in the IPv4 sction.
* Synchronize login.conf default path with skel/dot.cshrc and root/dot.cshrcrwatson2000-03-251-1/+1
|
* o Migrate path, umask from dot.login to dot.cshrcrwatson2000-03-252-15/+13
| | | | | | | | | | | | | | | | | | | | | | o Comment out display of fortune by default. o Synch root's .cshrc/.login and non-root's .cshrc/.login in terms of gratuitous variables set (EDITOR). o Remove some commented out variables set inconsistently or gratuitously, such as Interviews settings, 8-bit German locale for root only. o Synchronize comments in header, as well as references to appropriate man pages. o Remove MANPATH setting as apparently /etc/manpath.config does all that already. Similar changes probably need to be made in other dot.* files for root and skel, as all of these files seem to set different aliases, environmental variables, prompts, and have different semantics. As a result of this patch, leaving aside the setting of a special prompt for root, users of csh and tcsh should find similar environments when logging in or su'ing to any account using that shell. Reviewed by: asmodai, nbm, will
* Only tell the user that we're Mounting NFS file systems when we have NFSdan2000-03-251-4/+6
| | | | | | | file systems to mount. PR: 17594 Submitted by: Doug Barton <Doug@gorean.org>
* Add ${X11BASE}/lib/aout.asami2000-03-252-0/+4
|
OpenPOWER on IntegriCloud