summaryrefslogtreecommitdiffstats
path: root/etc/defaults
Commit message (Collapse)AuthorAgeFilesLines
* Add support for initializing swap devices with random one-shot keys. Notedes2004-02-031-0/+2
| | | | | | | 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
* Ruleset numbers are not allowed in devfs_* knobs.mtm2004-02-021-1/+1
| | | | Noticed by someone on -current.
* Support starting/stoping of jails individually.mtm2004-02-021-2/+0
| | | | | | | | This commit also removes the support for the sysutils/jailer port. This is inline with the general policy to keep ports related knobs out of the base system's configuration mechanism. Submitted by: Juergen Unger <j.unger@addict.de>
* If we're going to "add path 'fd/*' unhide", it only makescperciva2004-01-221-0/+1
| | | | | | | sense to "add path fd unhide" first. Requested by: mtm Approved by: rwatson (mentor)
* Added support for intelligent handling of DST transitions in cron.babkin2003-12-251-0/+1
| | | | reviewed by: imp
* Add power_profile, a script that changes the ACPI CPU Cx idle state and/ornjl2003-12-181-0/+4
| | | | | | | | | | | | | the throttling state in response to line transitions. Future plans include adding support for CPU frequency changes. Add a devd.conf entry for calling this script. The default values for this are: performance_cx_lowest="HIGH" # Use HLT (C0) online performance_throttle_state="HIGH" # 100% (no throttling) economy_cx_lowest="LOW" # Use the lowest Cx state possible economy_throttle_state="HIGH" # 100% (no throttling)
* Backout ataraid rcng script. I must have missed ar0 in my scan of /devseanc2003-12-141-12/+0
| | | | | | | after my first reboot because sure enough, I'm seeing it there now and ata(4) is doing the right thing(TM). Pointed out by: des
* Add a script that allows software RAID sets to be created before fileseanc2003-12-141-0/+12
| | | | | | | | | | | | | | | | systems are mounted. An example set of entries for /etc/rc.conf: ataraid_enable="YES" ataraid_devices="ar0" ataraid_ar0_set="ad2 ad3" ataraid_ar0_type="RAID1" Because there is no "correct" way of doing ATA raid (ie, geom vs. atacontrol vs. vinum) that is bikeshed proof, this rcng script stays within the bounds of atacontrol and assumes that other RAID solutions for GEOM or vinum will end up in a different rcNG script. Reviewed by: green
* Fix typo, I forgot daily_ in front of the status_ata_raid_enablejesper2003-12-121-1/+1
|
* Add a means of starting an IKE daemon from the rc system at an appropriatebms2003-11-281-0/+3
| | | | | | | | | time during the boot process. This is needed in the case where NFS mounts from servers reachable only via IPSEC are in /etc/fstab. PR: conf/42497 Submitted by: Volker Stolz Approved by: re (rwatson)
* Add status checking of ATA raid to the daily periodic scripts.jesper2003-10-271-0/+3
|
* any -> ? for new entry (to allow time for people to upgrade their pccardd)imp2003-10-041-1/+1
|
* Default ntpd to write a "driftfile" in /var/db/ntpd.drift.phk2003-10-031-1/+2
| | | | | | A "driftfile" caches the oscillator offset estimate from boot to boot, having this means faster and less bumpy time synchronization. Will be overridden by any value in the config file.
* As far as we know, there is no reason to not expose /dev/crypto inphk2003-09-261-0/+1
| | | | | jails so code in there can take advantage of hardware assisted crypto.
* A new proxim harmony oem card spotted in the field.imp2003-09-201-0/+6
| | | | Submitted by: Jeremy Bingham
* Add a default setting of NO for the gbde auto attach script, anddougb2003-09-181-0/+5
| | | | document the options.
* Add `-C 60' to the default flags for inetd, so that it is lessnectar2003-09-151-1/+1
| | | | vulnerable to run-of-the-mill DoS attacks in the default installation.
* add ELSA Vianect WLAN (Marco Wertejuk)imp2003-09-101-0/+12
| | | | | | benq awl100 (David Leemans) ObTerminalRoomCommit: done!
* Enhance the jail start/stop script.mtm2003-08-241-5/+24
| | | | | | | | | | | | | | | | | | | | o The following additional configuration attributes of a jail can be controlled from rc.conf: - mounting devfs(5) - mounting fdescfs(5) - mounting procfs(5) - custom devfs(8) ruleset If no ruleset is specified, the default jail ruleset is used. o The output of executing /etc/rc in the jail is now redirected to /dev/null. Instead, the hostname of the jail is echoed if the jail(8) command exited successfully. If the output is wanted it can probably be redirected to a file (/var/run/$jail maybe) instead of /dev/null. Submitted by: Scot W. Hetzel <hetzels@westbend.net> with modifications by Jens Rehsack <rehsack@liwing.de> and me.
* o Do not keep a separate list of src/etc/defaults files inmtm2003-08-241-1/+1
| | | | | | | | | | the src/etc makefile. This list was used to manually install the files from src/etc. Instead, simply change directory and 'make install'. o There is no reason for the files in src/etc/defaults to be installed as writeable. Reviewed by: ru
* o Reduce rc(8) startup clutter by turning the informational messagesmtm2003-08-201-1/+1
| | | | | | | | off by default. o Apparently the routine displaying the informational messages wasn't checking its knob in rc.conf, so fix that as well. Requested by: obrien
* Add a general mechanism for creating and applyingmtm2003-08-203-1/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | devfs(8) rules in rc(8). It is most useful for applying rules to devfs(5) mount points in /dev or inside jails. The following line of script is sufficient to mount a relatively useful+secure devfs(5) in a jail: devfs_mount_jail /some/jail/dev Some new shell routines available to scripts that source rc.subr(5): o devfs_link - Makes it a little easier to create symlinks o devfs_init_rulesets - Create devfs(8) rulesets from devfs.rules o devfs_set_ruleset - Set a ruleset to a devfs(5) mount o devfs_apply_ruleset - Apply a ruleset to a devfs(5) mount o devfs_domount - Mount devfs(5) and apply some ruleset o devfs_mount_jail - Mount devfs(5) and apply a ruleset appropriate to jails. Additional rulesets can be specified in /etc/devfs.rules. If the devfs_system_ruleset variable is defined in rc.conf and it contains the name of a ruleset defined in /etc/defaults/devfs.rules or user supplied rulesets in /etc/devfs.rules then that ruleset will be applied to /dev at startup by the /etc/rc.d/devfs script. It can also be applied post-startup: /etc/rc.d/devfs start This is a more flexible mechanism than the previous method of using /etc/devfs.conf. However, that method is still available. Note: since devfs(8) doesn't provide any way for creating symlinks as part of a ruleset, anyone wishing to create symlinks in a devfs(5) as part of the bootup sequence will still have to rely on /etc/devfs.conf.
* Now that routes for IP over ATM may look much more complex than before,harti2003-08-141-0/+1
| | | | | | | | | 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
* add rtsol_flags.ume2003-08-081-0/+1
| | | | MFC after: 1 week
* Add entries for NETGEAR MA401RA, IO DATA PCET10CL and Panasonic KXL-CB10AN.imp2003-08-071-0/+16
| | | | Appologies to: those that submitted these to me.
* Change the default for background_dhclient back to NO. It canmbr2003-07-281-1/+1
| | | | cause to much troubles with applications.
* Always start dhclient in the background.mbr2003-07-281-0/+1
| | | | Reviewed by: mtm
* Added entry for Billionton LM5LT-10Ndds2003-07-221-1/+8
| | | | | | | Fixed small typo Reviewed by: imp Approved by: imp
* Add support for DFE-670TXD to OLDCARDimp2003-07-191-0/+6
| | | | | Submitted by: David Wolfskill PR: 53356
* - Add a software watchdog facility.smkelly2003-06-261-0/+1
| | | | | | | | | This commit has two pieces. One half is the watchdog kernel code which lives primarily in hardclock() in sys/kern/kern_clock.c. The other half is a userland daemon which, when run, will keep the watchdog from firing while the userland is intact and functioning. Approved by: jeff (mentor)
* Update a comment about symlinking named's pid file to correctlymtm2003-06-141-1/+1
| | | | | | reflect the code. Suggested by: maxim
* The dhcp_program and dhcp_flags variables have to be renamed tomtm2003-06-071-2/+2
| | | | | | | | | | | | | | 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>
* Move networkfs_types from mountcritlocal into defaults/rc.conf as netfs_types.gordon2003-06-011-0/+1
| | | | | | Also add logic into mountcritremote to add extra_netfs_types to the list. This unbreaks putting smbfs, portalfs and now nwfs in fstab.
* Per previous announcement, remove the old version of the rc system.dougb2003-05-021-1/+0
| | | | | | | | | | All functionality from the previous system has been preserved, and users should still customize their system boot with the familiar methods, rc.conf, rc.conf.local, rc.firewall, sysctl.conf, etc. Users who have customized versions of scripts that have been removed should take great care when upgrading, since the compatibility code that used those old scripts has also been removed.
* Make the defaults for Kerberos 5 a little more up-to-date.markm2003-04-301-1/+2
|
* Change the name of the kadmind binary to match reality, now thatmarkm2003-04-301-1/+1
| | | | KerberosIV is no longer an issue.
* xten isn't needed after tw is gone.imp2003-04-271-2/+0
| | | | Approved by: re@ (scottl)
* Add new knobs for controlling jails in rc.d and document them.mtm2003-04-161-0/+5
| | | | Approved by: makrm (mentor)
* Add NTT-ME SS-LAN CARD MN128. This card entry has beenshiba2003-04-101-0/+6
| | | | committed into NEWCARD.
* Complete removal of 320.rdist by removing its entry from periodic.conf andjhb2003-04-011-6/+0
| | | | | | | removing the related 220.backup-distfile script and associatd periodic.conf entry. Discussed with: obrien
* Add pc-card from ARCHOS CD-224E cdrom.sobomax2003-03-281-0/+4
| | | | MFC after: 1 week
* A new rc-ng script to build linker.hints files with kldxref(8)cjc2003-03-171-0/+3
| | | | | automatically at boot time. Associated rc.conf(5) knobs and documentation are included.
* Make it more clear how to disable keybell, and where its options are found.dougb2003-03-151-1/+1
| | | | PR: conf/41772
* Initiate KerberosIV de-orbit burn. Disconnect the /etc configs.markm2003-03-081-4/+0
|
* Add YIS YWL-11B.shiba2003-02-151-0/+6
|
* /etc/rc.network isn't built to handle a value of "DEFAULT" (nor should itgshapiro2003-02-081-1/+1
| | | | | | | | | | | | be). Using that string leads rc.network to execute: # sysctl -w vfs.nfs.bufpackets=DEFAULT vfs.nfs.bufpackets: 4 -> 0 Which isn't what was intended. PR: conf/31280 MFC after: 3 days
* ep(4) does not have link0 and link1 options.maxim2003-02-041-3/+2
| | | | | | | PR: conf/46651 Submitted by: Eugene Grosbein <eugen@grosbein.pp.ru> Reviewed by: imp, mdodd MFC after: 1 week
* Add BUFFALO LPC-CF-CLT(10Base-T Compact Flash Ether Card).shiba2003-01-181-0/+6
|
* Add Allied Telesis WR211PCM.shiba2003-01-171-0/+6
|
* Add rc_debug knob to rc.conf. The code for it has been in rc.subr formtm2003-01-141-0/+1
| | | | | | | | some time now. Document all knobs introduced by rc.d Approved by: markm (mentor) Reviewd by: gordon (earlier revision)
OpenPOWER on IntegriCloud