summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Add nfs4 to list of net filesystems.rees2004-12-011-1/+1
| | | | Approved by: alfred
* Move the purely device-name based entries for mice and ethernetiedowse2004-11-282-16/+7
| | | | | | | | adapters from usbd.conf to devd.conf. USB ethernet devices were already handled in devd.conf so this just removes their usbd.conf entry. PR: conf/73799
* Add axe(4) devices to the USB ethernet regular expression.iedowse2004-11-281-1/+1
| | | | | | MFC after: 1 week PR: conf/73239 Submitted by: Daan Vreeken
* Teach periodic(8) security output to display information about blockedmlaier2004-11-243-0/+57
| | | | | | | | | | | | | | | | | | packet counts by pf(4). This adds a ``daily_status_security_pfdenied_enable'' variable to periodic.conf, which defaults to ``YES'' as the matching IPF(W) versions. The output will look like this (line wrapped): pf denied packets: > block drop log on rl0 proto tcp all [ Evaluations: 504986 Packets: 0 Bytes: 0 States: 0 ] > block drop log on rl0 all [ Evaluations: 18559 Packets: 427 Bytes: 140578 States: 0 ] Submitted by: clive (thanks a lot!) MFC after: 2 weeks
* Fix a typo in an error message.mux2004-11-241-1/+1
| | | | Spotted by: ceri
* Implement per-jail fstab(5) files. Here's a rc.conf sample usingmux2004-11-232-0/+21
| | | | | | | | | | | | | this feature for a jail named foo : jail_foo_mount_enable="YES" jail_foo_fstab="/etc/fstab.foo" The second line is actually useless, since the code defaults to using "/etc/fstab.$jailname" as the fstab file if none is specified. MFC after: 3 days Submitted by: Jeremie Le Hen <jeremie@le-hen.org>
* Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].obrien2004-11-191-1/+1
|
* Catch up with PHK's sio(4) cuaa->cuad rework [sys/dev/sio/sio.c rev. 1.456].obrien2004-11-191-1/+1
|
* Convince mergemaster to maintain/merge ramdisk scripts too.wes2004-11-161-1/+1
| | | | | Submitted by: Ben Kelly <ben.kelly@ieee.org> PR: bin/64079
* Shutup debugging output.wes2004-11-161-1/+0
|
* Unify the ci/co variables now that the the tty drivers now use the sameobrien2004-11-141-40/+35
| | | | character for both.
* Catch up with PHK's sio(4) rework [sys/dev/sio/sio.c rev. 1.456].obrien2004-11-141-23/+23
|
* Revert the noexec,nosuid,nodev options for md /tmp file systems, sincekeramida2004-11-091-1/+1
| | | | | | the change in the default behavior may break existing, working setups. Requested by: brooks
* Add two new rc.conf options: tmpmfs_flags and varmfs_flags.keramida2004-11-094-7/+9
| | | | | | | | | | | | | | These can be used to pass extra options to the mdmfs(8) utility, to customize the finer details of the md file system creation (i.e. to turn on/off softupdates, to specify a default owner for md filesystem, etc). Use these two new flags to mount tmpmfs and varmfs without softupdates, since it doesn't make much sense to use SU on malloc-backed file systems. Reviewed by: mtm Inspired by: J. D. Bronson, jbronson at wixb dot com
* Removed the remnants of gx(4).ru2004-11-081-1/+1
|
* Someone (sanpei-san?) sent me this entry some time ago. Add COREGAimp2004-11-081-2/+2
| | | | | FEtherII PCC-TXD to the FEther PCC-TXD entry (since they appear to be handled the same).
* Stop method for swap1 script was introduced, because gmirror needed it.pjd2004-11-051-1/+1
| | | | | Now gmirror use shutdown hooks to mark mirrors as clean on shutdown, so this is not needed anymore.
* - Make the header conform to standard rc.d style.mtm2004-11-052-4/+4
| | | | | - The 'before ipfw' directive seems bogus, and should instead be 'before rcconf'.
* Sync up with vinum(8) and rc.d/vinum removal.ru2004-11-041-1/+0
| | | | OK'ed by: phk
* remove vinum startup script.phk2004-11-042-18/+1
|
* Create a separate directory for dynamic zones which is owned by the bindgshapiro2004-11-042-0/+16
| | | | | | | | | | user (for creation of the zone journal file). This is separate from the master/ directory for security. Give an example dynamic zone in the sample named.conf. Approved by: dougb Noticed by: Eivind Olsen <eivind at aminor.no> MFC after: 1 week
* Sort files properly.pjd2004-11-021-2/+2
|
* Do a better job of supporting more than one mouse devicemtm2004-11-013-5/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | on the system. To start/stop/check on a specific device give the device name as the second argument to the script: # /etc/rc.d/moused start ums0 To use different rc.conf(5) knobs with different mice use the device name as part of the knob. For example, if the mouse device is ums0, then: moused_ums0_enable=yes moused_ums0_flags="-z 4" moused_ums0_port="/dev/ums0" Starting rc.d/moused without the device argument will use the standard moused_* flags. So, this commit should not disrupt or change current usage. To preserve current behaviour with respect to usb mice, which appear automatically when inserted, there is a new knob, moused_nondefault_enable, which will treat any devices without rc.conf knobs as enabled. To minimize knobs in /etc/rc.conf, the device file and pid file are auto-computed, so that in the typical case for a usb mouse you don't need to add anything extra in /etc/rc.conf to get it working. Additionally, this updates /etc/usbd.conf to use the rc.d/moused script so people don't have to modify it to configure their usb mouse anymore. MFC after: 1 month
* Allow to change interfaces name on boot time.pjd2004-10-303-0/+25
| | | | | | | | | Now, one should be able to put something like this into /etc/rc.conf: ifconfig_fxp0_name="net0" ifconfig_net0="inet 10.0.0.1/16" Reviewed by: green
* - Add 'check' command for checking rules syntax.pjd2004-10-251-11/+14
| | | | | | - Before flushing rules in 'reload' command, check first if rules are correct. - Do not duplicate checking if $pf_rules file exists.
* For variables that are only checked with defined(), don't provideru2004-10-244-4/+4
| | | | any fake value.
* - use `realpath /dev/dumpdev` instead of just /dev/dumpdev so messagesdes2004-10-241-3/+8
| | | | | will show the real device name - show different error messages for missing dump device and directory
* Move devfs earlier in the boot sequence. Some system daemons and othermtm2004-10-231-2/+2
| | | | | | programs may need to use the symlinks and permissions that it sets up. Discussed on: -current
* Automatically load the ipdivert module if it was not compiled into the kernelandre2004-10-221-0/+13
| | | | and natd_enable is true.
* Introduce root_rw_mount as a new variable in defaults/rc.conf tokeramida2004-10-201-0/+1
| | | | | | | | | unbreak /etc/rc.d/root for diskless systems that get their root filesystem from a read-only NFS mount. PR: conf/72927 Submitted by: Ralf Wenk <RZ-FreeBSD1004@fh-karlsruhe.de> Reviewed by: brooks
* Apply README guidelines (no tabs).ru2004-10-191-2/+2
|
* When dumpdev is set to 'auto', and a suitable swap device is found,thomas2004-10-182-3/+11
| | | | | create a symbolic link /dev/dumpdev designating that device so savecore can find and save a previous kernel dump.
* New directory added for Argentinian timezones.wollman2004-10-181-0/+2
| | | | Submitted by: ache
* Remove unused computation of memory size.thomas2004-10-181-1/+0
| | | | Reviewed by: des
* turn off getty(8) on ttyv[0-7]. We don't support syscons on ia64 andmarcel2004-10-171-8/+8
| | | | | | | | | | | | | | | | do not have these device special files. Where this previously failed quietly, it now emits annoying but complete messages at best and incomprehensible prefixes on average. During all of October, this is a string of 16 O's, as in: : Starting inetd. Sun Oct 17 15:09:09 PDT 2004 OOOOOOOOOOOOOOOO FreeBSD/ia64 (itanium.pn.xcllnt.net) (ttyu2) login:
* Fix a bogus variable assignment. You can't expectschweikh2004-10-171-2/+2
| | | | | | | | | | | _msg="a" \ " b" to concat the strings. Use _msg="a" _msg="$_msg b" instead (intent is to not exceed 80 chars per line). MFC after: 1 week
* Remove a redundant "uname=root".ru2004-10-151-1/+1
| | | | Forgotten by: dougb
* Remove requirement on FreeBSD keyword.trhodes2004-10-141-1/+1
| | | | Skipped by: mtm (/me glares at mtm) :)
* Reflect sio driver device name change cuaa -> cuadphk2004-10-131-10/+10
|
* Accidentally removed the last component of the pathname when committing.ru2004-10-131-1/+1
|
* Fix a botched rev. 1.221 commit. Also, a number of people haveru2004-10-131-2/+1
| | | | | | pointed out that /usr/local/etc/rc.d/000.pkgtools.sh installed with the portupgrade does an equivalent thing, so I personally would like to see the change reverted, but let David handle it.
* Remove hcsecd line which was inadvertantly included in the previous commit.des2004-10-121-1/+0
|
* Remove a pointless syslogd_flags example.des2004-10-121-1/+1
| | | | MFC after: 2 weeks
* 'portupgrade' places obsoleted shared libraries in /usr/local/lib/compat/pkg,obrien2004-10-111-1/+2
| | | | so add this the list of directories ldconfig'ed.
* Remove an unused variable.mtm2004-10-081-1/+0
| | | | Submitted by: Pawel Worach <pawel.worach@telia.com>
* 1. Incorporate most of Ruslan's improvements to where and how thedougb2004-10-081-2/+11
| | | | | | | | | | | | | | | /etc/namedb symlink is created. 2. Incorporate Brian's suggestion to make the link relative. This is necessary to handle situations (such as mergemaster) where the user is building a tree in a seperate environment. This will also fix the problem with the way DESTDIR is set in 'make release'. 3. Add a new knob, NO_BIND_MTREE, as suggested by the folks who already have stuff in /var/named that they don't want me to mess with. 4. Update make.conf(5) with the new stuff, and correct a few paths that have changed since I last updated it.
* Remove the requirement for the FreeBSD keyword as it no longermtm2004-10-07132-134/+92
| | | | | | | makes any sense. Discussed with: dougb, brooks MFC after: 3 days
* - Be more userfriendly and allow to specify gbde device name in those forms:pjd2004-10-071-10/+13
| | | | | | | | | | | device device.bde /dev/device /dev/device.bde - Fix stop routine: + There don't have to be file system mounted on gbde device, so ignore errors from umount(8). + Only detach existing gbde devices.
* Only try to attach if parent device actually exists.pjd2004-10-071-1/+1
| | | | | | | I used ugly "/dev/${parent}" instead of "${parentdev}", because "/dev/" prefix for devices listed in gbde_devices variable is optional. Reported by: Sean McNeil <sean@mcneil.com>
* Lock file for gbde devices is optional.pjd2004-10-061-2/+6
|
OpenPOWER on IntegriCloud