2011-02-18 03:42:20 +03:00
|
|
|
# $NetBSD: rc.conf,v 1.112 2011/02/18 00:42:20 jmcneill Exp $
|
2000-10-01 09:46:03 +04:00
|
|
|
#
|
|
|
|
# /etc/defaults/rc.conf --
|
|
|
|
# default configuration of /etc/rc.conf
|
|
|
|
#
|
|
|
|
# see rc.conf(5) for more information.
|
|
|
|
#
|
2000-11-09 02:17:50 +03:00
|
|
|
# DO NOT EDIT THIS FILE DIRECTLY; IT MAY BE REPLACED DURING A SYSTEM UPGRADE.
|
|
|
|
# EDIT /etc/rc.conf INSTEAD.
|
|
|
|
#
|
2000-10-01 09:46:03 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Use program=YES to enable program, NO to disable it. program_flags are
|
|
|
|
# passed to the program on the command line.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Uncomment this if you want to use local paths in rc.
|
|
|
|
#
|
|
|
|
#export PATH=$PATH:/usr/pkg/sbin:/usr/pkg/bin:/usr/local/sbin:/usr/local/bin
|
|
|
|
|
2001-06-16 08:09:19 +04:00
|
|
|
# Uncomment the following to execute each /etc/rc.d script in
|
|
|
|
# the current shell rather than in a subshell. This may be
|
|
|
|
# faster on very slow machines that have an expensive fork(2).
|
2001-02-28 19:52:04 +03:00
|
|
|
# NOTE: USE THIS AT YOUR OWN RISK; A ROGUE COMMAND
|
|
|
|
# MAY INADVERTENTLY PREVENT BOOT TO MULTIUSER.
|
|
|
|
#
|
|
|
|
#rc_fast_and_loose=YES
|
|
|
|
|
2009-09-11 22:17:04 +04:00
|
|
|
# If rc_silent is true then /etc/rc will suppress most output to
|
|
|
|
# the console. The default is taken from the AB_SILENT flag passed
|
|
|
|
# from the boot loader to the kernel in the boothowto(9) variable.
|
|
|
|
#
|
|
|
|
# rc_silent_cmd is executed once for each suppressed line of output.
|
|
|
|
# Useful values are ":" and "twiddle".
|
|
|
|
#
|
|
|
|
rc_silent=$( [ "$(( $(/sbin/sysctl -n kern.boothowto 2>/dev/null || echo 0) \
|
|
|
|
& 0x40000 ))" != 0 ] && echo true || echo false )
|
|
|
|
rc_silent_cmd=twiddle
|
|
|
|
|
2002-05-19 05:01:32 +04:00
|
|
|
# Additional flags to the rcorder(8) that's run by /etc/rc.
|
|
|
|
#
|
|
|
|
rc_rcorder_flags=""
|
|
|
|
|
2009-04-10 20:18:04 +04:00
|
|
|
# The directories searched for rc scripts.
|
|
|
|
# These directories must be part of the root filesystem.
|
|
|
|
rc_directories=/etc/rc.d
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# If this is set to NO, shutdown(8) will not run /etc/rc.shutdown.
|
|
|
|
#
|
|
|
|
do_rcshutdown=YES
|
|
|
|
|
2002-05-19 05:01:32 +04:00
|
|
|
# Additional flags to the rcorder(8) that's run by /etc/rc.shutdown.
|
|
|
|
#
|
|
|
|
rcshutdown_rcorder_flags=""
|
|
|
|
|
2001-06-16 08:09:19 +04:00
|
|
|
# If this is non-blank, use as the number of seconds to run a watchdog
|
|
|
|
# timer which will terminate /etc/rc.shutdown if the timeout expires.
|
|
|
|
#
|
|
|
|
rcshutdown_timeout=""
|
|
|
|
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# Basic network configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
# Fully Qualified Internet Domain Name (a.k.a. hostname, e.g. foo.baz.edu).
|
|
|
|
# If blank, use /etc/myname.
|
|
|
|
#
|
|
|
|
hostname=""
|
|
|
|
|
2006-03-27 14:07:07 +04:00
|
|
|
# If there's only one way out of your IPv4 network, set this to the hostname
|
|
|
|
# or the IPv4 address of the router that will get your packets off the LAN.
|
2000-10-01 09:46:03 +04:00
|
|
|
# If blank, use /etc/mygate.
|
|
|
|
#
|
|
|
|
defaultroute=""
|
|
|
|
|
2006-03-27 14:07:07 +04:00
|
|
|
# Same thing for IPv6. If blank, use /etc/mygate6.
|
|
|
|
#
|
|
|
|
defaultroute6=""
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# The NIS domain name (formerly known as Yellow Pages); not in any way
|
|
|
|
# related to Internet domain names.
|
|
|
|
# If blank, use /etc/defaultdomain.
|
|
|
|
#
|
|
|
|
domainname=""
|
|
|
|
|
|
|
|
# Filesystems to mount early in boot-up.
|
2002-03-27 11:53:39 +03:00
|
|
|
# Note that `/var' is needed in $critical_filesystems_local (or
|
2000-10-01 09:46:03 +04:00
|
|
|
# implied as part of `/') as certain services that need /var (such as
|
|
|
|
# dhclient) may be needed to get the network operational enough to mount
|
2009-09-14 16:05:12 +04:00
|
|
|
# the $critical_filesystems_remote. Prepending "OPTIONAL:" means it
|
|
|
|
# will not be an error if that file system is not present in fstab(5).
|
2000-10-01 09:46:03 +04:00
|
|
|
#
|
2009-09-14 16:05:12 +04:00
|
|
|
critical_filesystems_local="OPTIONAL:/var"
|
|
|
|
critical_filesystems_remote="OPTIONAL:/usr"
|
2000-10-01 09:46:03 +04:00
|
|
|
|
2002-03-22 02:08:35 +03:00
|
|
|
# Swap device controls.
|
2000-10-01 09:46:03 +04:00
|
|
|
#
|
2002-03-22 02:08:35 +03:00
|
|
|
no_swap=NO # Set to YES if you have purposefully setup no swap
|
|
|
|
# partitions and don't want to be warned about it.
|
2005-06-15 07:34:45 +04:00
|
|
|
swapoff=YES # Remove block-type swap partitions upon shutdown
|
|
|
|
# This defaults to yes, so that raids shutdown cleanly
|
2000-10-01 09:46:03 +04:00
|
|
|
|
2003-03-19 11:54:00 +03:00
|
|
|
# Concatenated disk driver.
|
|
|
|
#
|
|
|
|
ccd=YES
|
|
|
|
|
2003-09-10 18:50:19 +04:00
|
|
|
# RAIDframe driver (manually configured devices).
|
|
|
|
#
|
|
|
|
raidframe=YES
|
|
|
|
|
2003-03-19 09:06:47 +03:00
|
|
|
# Crypto file system.
|
|
|
|
#
|
|
|
|
cgd=YES
|
|
|
|
|
2009-01-15 01:07:55 +03:00
|
|
|
# Logical Volume Manager
|
|
|
|
#
|
|
|
|
lvm=NO
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# One-time actions and programs on boot-up.
|
|
|
|
#
|
|
|
|
savecore=YES savecore_flags="-z"
|
2004-07-15 07:29:55 +04:00
|
|
|
savecore_dir="/var/crash"
|
2007-02-04 11:19:26 +03:00
|
|
|
per_user_tmp=NO # per-user /tmp directories
|
|
|
|
per_user_tmp_dir="/private/tmp" # real storage for /tmp
|
2000-10-01 09:46:03 +04:00
|
|
|
clear_tmp=YES # clear /tmp after reboot
|
|
|
|
update_motd=YES # updates /etc/motd
|
|
|
|
dmesg=YES dmesg_flags="" # write /var/run/dmesg.boot
|
2001-04-25 15:50:56 +04:00
|
|
|
accounting=NO # uses /var/account/acct
|
2000-10-01 09:46:03 +04:00
|
|
|
newsyslog=NO newsyslog_flags="" # trim log files
|
2004-06-03 20:30:44 +04:00
|
|
|
quota=YES # check and enable quotas
|
|
|
|
ldconfig=YES # rebuild a.out ldconfig cache
|
2007-08-27 03:55:50 +04:00
|
|
|
sysdb=YES # build system databases
|
2009-01-04 15:10:30 +03:00
|
|
|
rndctl=NO rndctl_flags="" # configure rndctl(8)
|
2009-07-25 20:20:10 +04:00
|
|
|
gpio=NO # configure GPIO devices
|
2000-10-01 09:46:03 +04:00
|
|
|
|
2003-12-27 03:23:22 +03:00
|
|
|
# cope with other OSes using the real time clock at localtime on this
|
|
|
|
# machine (by adjusting kern.rtc_offset at boot)
|
|
|
|
rtclocaltime=NO
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# NOTE: default coredump name now set in /etc/sysctl.conf
|
|
|
|
|
2003-10-20 19:02:15 +04:00
|
|
|
#
|
|
|
|
# File system check flags; default to preen mode, checking filesystems
|
|
|
|
# that are listed in /etc/fstab in parallel as the fsck pass number
|
|
|
|
# permits. Fix minor faults automatically, and exit with non 0 only
|
|
|
|
# when major errors occur.
|
|
|
|
#
|
|
|
|
fsck_flags=-p
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# Security setting. If $securelevel is non-empty, the system securelevel
|
|
|
|
# is set to this value early in the boot sequence. Otherwise the default
|
|
|
|
# action is taken (see init(8)).
|
|
|
|
#
|
|
|
|
securelevel="" # securelevel to set to
|
|
|
|
|
|
|
|
# To set the IP address of an interface either use
|
|
|
|
# ifconfig_xxN="IP-NO"
|
|
|
|
# where xxN is the interface. If this variable is not set then
|
|
|
|
# contents of the file /etc/ifconfig.xxN is used.
|
|
|
|
|
|
|
|
# Networking startup.
|
|
|
|
#
|
2009-10-01 20:36:20 +04:00
|
|
|
mdnsd=NO
|
2011-02-02 05:20:24 +03:00
|
|
|
npf=NO
|
2009-03-23 21:52:02 +03:00
|
|
|
ipfilter=NO ipfilter_flags="" # uses /etc/ipf.conf
|
2000-10-01 09:46:03 +04:00
|
|
|
ipnat=NO # uses /etc/ipnat.conf
|
2002-02-11 13:19:55 +03:00
|
|
|
ipfs=NO ipfs_flags="" # save/load ipnat and ipf states
|
2000-10-01 09:46:03 +04:00
|
|
|
ipsec=NO # uses /etc/ipsec.conf
|
2004-04-04 17:59:36 +04:00
|
|
|
ipmon=NO ipmon_flags="-Dns" # syslog ipfilter messages
|
2005-08-07 05:03:39 +04:00
|
|
|
pf=NO pf_rules="/etc/pf.conf"
|
2004-07-04 17:59:34 +04:00
|
|
|
pflogd=NO
|
2008-06-20 19:21:56 +04:00
|
|
|
ftp_proxy=NO
|
2002-01-21 17:33:25 +03:00
|
|
|
racoon=NO # IKE daemon
|
2000-10-01 09:46:03 +04:00
|
|
|
auto_ifconfig=YES # config all avail. interfaces
|
|
|
|
net_interfaces="" # used only if above is NO
|
|
|
|
flushroutes=YES # flush routes in netstart
|
2009-04-29 03:30:34 +04:00
|
|
|
dhcpcd=NO
|
2008-07-27 23:31:02 +04:00
|
|
|
dhcpcd_flags="-q" # For ifconfig_XXX=dhcp.
|
2000-10-01 09:46:03 +04:00
|
|
|
dhclient=NO # behave as a DHCP client
|
2002-01-21 17:33:25 +03:00
|
|
|
dhclient_flags="" # blank: config all interfaces
|
2000-10-01 09:46:03 +04:00
|
|
|
ntpdate=NO ntpdate_flags="-b -s" # May need '-u' thru firewall
|
|
|
|
ppp_peers="" # /etc/ppp/peers to call
|
|
|
|
ip6mode=host # host, autohost or router
|
2005-11-24 20:28:45 +03:00
|
|
|
ip6uniquelocal=NO # IPv6 unique-local forwarding
|
2001-09-24 15:34:11 +04:00
|
|
|
rtsol=NO rtsol_flags="-a" # for ip6mode=autohost only
|
2000-10-01 09:46:03 +04:00
|
|
|
|
2001-09-04 22:09:13 +04:00
|
|
|
# Special treatment for interfaces that need to be downed on
|
2004-10-09 06:18:48 +04:00
|
|
|
# shutdown (because they might cause unnecessary costs or block resources
|
2001-09-04 22:09:13 +04:00
|
|
|
# on the peer). All pppoe* interfaces are automatically included in this
|
|
|
|
# list, add others here manually.
|
2003-03-10 21:21:00 +03:00
|
|
|
#force_down_interfaces=""
|
2001-09-04 22:09:13 +04:00
|
|
|
|
2001-12-10 19:53:06 +03:00
|
|
|
ifwatchd=NO # execute up/down scripts for in-kernel PPPoE interfaces
|
|
|
|
ifwatchd_flags="-u /etc/ppp/ip-up -d /etc/ppp/ip-down pppoe0"
|
|
|
|
|
2001-04-06 04:37:03 +04:00
|
|
|
# ALTQ configuration/monitoring daemon
|
|
|
|
altqd=NO altqd_flags=""
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# Daemons required by servers. These are not needed for strictly client use.
|
|
|
|
#
|
|
|
|
|
|
|
|
# inetd is used to start the IP-based services enabled in /etc/inetd.conf
|
|
|
|
#
|
|
|
|
inetd=YES inetd_flags="-l" # -l logs libwrap
|
|
|
|
|
2004-02-01 00:49:52 +03:00
|
|
|
# identd
|
|
|
|
#
|
|
|
|
identd=NO identd_flags="-b -l -u nobody"
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# rpcbind (formerly known as 'portmap') is used to look up RPC-based services.
|
|
|
|
#
|
|
|
|
rpcbind=NO rpcbind_flags="-l" # -l logs libwrap
|
|
|
|
|
|
|
|
# Commonly used daemons.
|
|
|
|
#
|
|
|
|
syslogd=YES syslogd_flags="-s" # -s "secure" unix domain only
|
|
|
|
cron=YES
|
2001-03-12 19:13:17 +03:00
|
|
|
named=NO named_flags="" # see below for named_chrootdir
|
2000-10-01 09:46:03 +04:00
|
|
|
timed=NO timed_flags=""
|
2002-01-18 13:53:29 +03:00
|
|
|
ntpd=NO ntpd_flags="" # see below for ntpd_chrootdir
|
2007-08-27 14:59:05 +04:00
|
|
|
# The default setting for postfix here is YES, but gets re-examined by
|
|
|
|
# the rc.d/postfix startup script when it runs. The script sets
|
|
|
|
# _rc_d_postfix to "check", and then causes all rc.conf settings to
|
|
|
|
# be re-evaluated. If the value of $postfix after this is "check",
|
|
|
|
# the script then checks to see if /etc/mailer.conf selects the system
|
|
|
|
# postfix. If not, it does print a warning and does not start postfix
|
|
|
|
# to avoid conflict with a different MTA.
|
|
|
|
postfix=${_rc_d_postfix:-YES}
|
2000-10-01 09:46:03 +04:00
|
|
|
lpd=NO lpd_flags="-s" # -s "secure" unix domain only
|
|
|
|
sshd=NO sshd_flags=""
|
2004-02-18 20:36:34 +03:00
|
|
|
ssh_keygen_flags="-b 1024" # generate 1024 bit keys if host keys missing
|
2005-08-09 18:59:33 +04:00
|
|
|
ftpd=NO ftpd_flags="-ll"
|
2008-12-11 16:55:16 +03:00
|
|
|
httpd=NO httpd_flags=""
|
|
|
|
httpd_wwwdir="/var/www"
|
|
|
|
httpd_wwwuser="_httpd"
|
2000-10-01 09:46:03 +04:00
|
|
|
|
2001-03-12 19:13:17 +03:00
|
|
|
# To run the named(8) DNS server as an unprivileged user under a
|
|
|
|
# chroot(2) cage, uncomment the following after migrating the contents
|
2001-10-11 11:21:07 +04:00
|
|
|
# of /etc/namedb to /var/chroot/named/etc/namedb
|
2001-03-12 19:13:17 +03:00
|
|
|
#
|
2001-10-11 11:21:07 +04:00
|
|
|
#named_chrootdir="/var/chroot/named"
|
2001-03-12 19:13:17 +03:00
|
|
|
|
2002-01-18 13:53:29 +03:00
|
|
|
# To run the ntpd(8) NTP server as an unprivileged user under a
|
2002-06-17 10:47:58 +04:00
|
|
|
# chroot(2) cage, uncomment the following, after ensuring that:
|
|
|
|
# - The kernel has "pseudo-device clockctl" compiled in
|
|
|
|
# - /dev/clockctl is present
|
2002-01-18 13:53:29 +03:00
|
|
|
#
|
|
|
|
#ntpd_chrootdir="/var/chroot/ntpd"
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# Routing daemons.
|
|
|
|
#
|
|
|
|
routed=NO routed_flags="-q"
|
2001-04-12 13:59:18 +04:00
|
|
|
gated=NO
|
2000-10-01 09:46:03 +04:00
|
|
|
mrouted=NO mrouted_flags=""
|
|
|
|
route6d=NO route6d_flags=""
|
2009-09-19 23:47:48 +04:00
|
|
|
rtsold=NO rtsold_flags="-a" # for ip6mode=autohost only
|
2011-01-13 13:55:19 +03:00
|
|
|
ldpd=NO
|
2000-10-01 09:46:03 +04:00
|
|
|
|
|
|
|
# Daemons used to boot other hosts over a network.
|
|
|
|
#
|
|
|
|
rarpd=NO rarpd_flags="-a"
|
|
|
|
bootparamd=NO bootparamd_flags=""
|
|
|
|
dhcpd=NO dhcpd_flags="-q"
|
|
|
|
dhcrelay=NO dhcrelay_flags=""
|
|
|
|
rbootd=NO rbootd_flags=""
|
|
|
|
mopd=NO mopd_flags="-a"
|
2001-05-22 18:51:37 +04:00
|
|
|
ndbootd=NO ndbootd_flags="-s /tftpboot /tftpboot/bootyy"
|
2000-10-01 09:46:03 +04:00
|
|
|
rtadvd=NO rtadvd_flags=""
|
|
|
|
|
|
|
|
# X11 daemons.
|
|
|
|
#
|
|
|
|
xfs=NO xfs_flags="" # X11 font server
|
|
|
|
xdm=NO xdm_flags="" # X11 display manager; needs
|
|
|
|
# wscons=YES for local displays.
|
|
|
|
|
2011-02-18 03:42:20 +03:00
|
|
|
# Update fontconfig cache at boot
|
|
|
|
fccache=YES
|
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# YP (NIS) daemons.
|
|
|
|
#
|
|
|
|
ypbind=NO ypbind_flags=""
|
|
|
|
ypserv=NO ypserv_flags="-d"
|
|
|
|
yppasswdd=NO yppasswdd_flags=""
|
|
|
|
|
|
|
|
# NFS daemons and parameters.
|
|
|
|
#
|
2001-06-16 10:13:09 +04:00
|
|
|
mountd=NO mountd_flags="" # NFS mount requests daemon
|
2000-10-01 09:46:03 +04:00
|
|
|
nfs_client=NO # enable client daemons
|
|
|
|
nfs_server=NO # enable server daemons
|
|
|
|
nfsd_flags="-6tun 4"
|
|
|
|
lockd=NO lockd_flags=""
|
|
|
|
statd=NO statd_flags=""
|
|
|
|
amd=NO amd_flags="-l syslog -x error,noinfo,nostats"
|
|
|
|
amd_dir=/amd # mount dir
|
|
|
|
|
|
|
|
# Heimdal Kerberos 5 KDC (with Kerberos IV compatibility)
|
2008-03-28 00:42:22 +03:00
|
|
|
kdc=NO kdc_flags="--detach"
|
2000-10-01 09:46:03 +04:00
|
|
|
|
2006-02-08 22:02:58 +03:00
|
|
|
# iSCSI target
|
|
|
|
iscsi_target=NO iscsi_target_flags=""
|
|
|
|
|
2006-04-30 16:54:26 +04:00
|
|
|
# WPA daemons.
|
|
|
|
hostapd=NO hostapd_flags="-B /etc/hostapd.conf"
|
2006-10-07 20:50:34 +04:00
|
|
|
wpa_supplicant=NO wpa_supplicant_flags="-B" # -i<if> -c<file>
|
2006-04-30 16:54:26 +04:00
|
|
|
|
2001-01-07 20:04:49 +03:00
|
|
|
# ISDN daemon
|
|
|
|
isdnd=NO isdnd_flags=""
|
|
|
|
|
2006-06-19 19:44:33 +04:00
|
|
|
# Bluetooth daemons
|
2008-04-15 15:17:47 +04:00
|
|
|
btattach=NO # Bluetooth attach serial HCI
|
2006-06-19 19:44:33 +04:00
|
|
|
btconfig=NO # Bluetooth controller configuration
|
2006-08-13 13:03:21 +04:00
|
|
|
btdevctl=NO # Bluetooth device configuration
|
2006-06-19 19:44:33 +04:00
|
|
|
bthcid=NO bthcid_flags="" # Bluetooth HCI daemon
|
2007-03-18 18:53:54 +03:00
|
|
|
sdpd=NO sdpd_flags="" # Service Discovery daemon
|
2006-06-19 19:44:33 +04:00
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# Other daemons.
|
|
|
|
#
|
2005-09-15 07:40:34 +04:00
|
|
|
rwhod=NO rwhod_flags="-u _rwhod"
|
Imported envsys 2, a brief description of the new features:
(Part 4: documentation and configuration files)
* Support for detachable sensors.
* Cleaned up the API for simplicity and efficiency.
* Ability to send capacity/critical/warning events to powerd(8).
* Adapted all the code to the new locking order.
* Compatibility with the old envsys API: the ENVSYS_GTREINFO
and ENVSYS_GTREDATA ioctl(2)s are supported.
* Added support for a 'dictionary based communication channel' between
sysmon_power(9) and powerd(8), that means there is no 32 bytes event
size restriction anymore.
* Binary compatibility with old envstat(8) and powerd(8) via COMPAT_40.
* All drivers with the n^2 gtredata bug were fixed, PR kern/36226.
Tested by:
blymn: smsc(4).
bouyer: ipmi(4), mfi(4).
kefren: ug(4).
njoly: viaenv(4), adt7463.c.
riz: owtemp(4).
xtraeme: acpiacad(4), acpibat(4), acpitz(4), aiboost(4), it(4), lm(4).
2007-07-01 11:55:51 +04:00
|
|
|
envsys=NO # Set /etc/envsys.conf preferences
|
2000-10-01 09:46:03 +04:00
|
|
|
|
|
|
|
# Hardware daemons.
|
|
|
|
#
|
|
|
|
apmd=NO apmd_flags="" # APM power management daemon.
|
2003-04-18 09:21:20 +04:00
|
|
|
powerd=NO powerd_flags="" # power management daemon
|
2000-10-01 09:46:03 +04:00
|
|
|
screenblank=NO screenblank_flags="" # wscons and FBIO screenblanker
|
|
|
|
|
2001-10-30 02:25:00 +03:00
|
|
|
moused=NO # serial mouse handler
|
|
|
|
moused_flags="-p /dev/tty00"
|
|
|
|
|
2002-07-30 09:58:42 +04:00
|
|
|
wdogctl=NO # watchdog timer control
|
|
|
|
# wdogctl_flags="-k devicename"
|
2006-04-30 19:18:19 +04:00
|
|
|
irdaattach=NO # attach serial lines to IrDA
|
|
|
|
irdaattach_flags="tty00"
|
2002-07-30 09:58:42 +04:00
|
|
|
|
2000-10-01 09:46:03 +04:00
|
|
|
# Configuration of "wscons" console driver virtual screens.
|
|
|
|
#
|
|
|
|
wscons=NO wscons_flags="" # setup wscons from wscons.conf
|
2002-06-27 19:10:32 +04:00
|
|
|
|
|
|
|
# Configuration of "wsmoused" console driver cut-n-paste support
|
|
|
|
#
|
|
|
|
wsmoused=NO wsmoused_flags=""
|
2002-08-27 18:12:09 +04:00
|
|
|
|
|
|
|
# Configuration of "tpctl" touch panel calibration utility
|
|
|
|
#
|
|
|
|
tpctl=NO tpctl_flags=""
|
2002-10-12 15:29:28 +04:00
|
|
|
|
|
|
|
# Mixer setting
|
|
|
|
#
|
|
|
|
mixerctl=NO mixerctl_mixers="" # "mixer0 mixer1" means saving
|
|
|
|
# and restoring their settings
|
2004-01-11 17:21:43 +03:00
|
|
|
|
|
|
|
# Vi recovery notification. Vi(1)'s -r option can recover files which were
|
2004-10-09 06:18:48 +04:00
|
|
|
# accidentally closed. See vi(1) for more details.
|
2004-01-11 17:21:43 +03:00
|
|
|
#
|
|
|
|
virecover=YES
|
2004-01-14 09:54:48 +03:00
|
|
|
|
2006-12-30 14:06:04 +03:00
|
|
|
# Veriexec signature loading.
|
2004-01-14 09:54:48 +03:00
|
|
|
#
|
|
|
|
veriexec=NO
|
2005-10-16 03:26:30 +04:00
|
|
|
veriexec_strict=0
|
|
|
|
veriexec_verbose=0
|
Some Veriexec stuff that's been rotting in my tree for months.
Bug fixes:
- Fix crash reported by Scott Ellis on current-users@.
- Fix race conditions in enforcing the Veriexec rename and remove
policies. These are NOT security issues.
- Fix memory leak in rename handling when overwriting a monitored
file.
- Fix table deletion logic.
- Don't prevent query requests if not in learning mode.
KPI updates:
- fileassoc_table_run() now takes a cookie to pass to the callback.
- veriexec_table_add() was removed, it is now done internally. As a
result, there's no longer a need for VERIEXEC_TABLESIZE.
- veriexec_report() was removed, it is now internal.
- Perform sanity checks on the entry type, and enforce default type
in veriexec_file_add() rather than in veriexecctl.
- Add veriexec_flush(), used to delete all Veriexec tables, and
veriexec_dump(), used to fill an array with all Veriexec entries.
New features:
- Add a '-k' flag to veriexecctl, to keep the filenames in the kernel
database. This allows Veriexec to produce slightly more accurate
logs under certain circumstances. In the future, this can be either
replaced by vnode->pathname translation, or combined with it.
- Add a VERIEXEC_DUMP ioctl, to dump the entire Veriexec database.
This can be used to recover a database if the file was lost.
Example usage:
# veriexecctl dump > /etc/signatures
Note that only entries with the filename kept (that is, were loaded
with the '-k' flag) will be dumped.
Idea from Brett Lymn.
- Add a VERIEXEC_FLUSH ioctl, to delete all Veriexec entries. Sample
usage:
# veriexecctl flush
- Add a 'veriexec_flags' rc(8) variable, and make its default have
the '-k' flag. On systems using the default signatures file
(generaetd from running 'veriexecgen' with no arguments), this will
use additional 32kb of kernel memory on average.
- Add a '-e' flag to veriexecctl, to evaluate the fingerprint during
load. This is done automatically for files marked as 'untrusted'.
Misc. stuff:
- The code for veriexecctl was massively simplified as a result of
eliminating the need for VERIEXEC_TABLESIZE, and now uses a single
pass of the signatures file, making the loading somewhat faster.
- Lots of minor fixes found using the (still under development)
Veriexec regression testsuite.
- Some of the messages Veriexec prints were improved.
- Various documentation fixes.
All relevant man-pages were updated to reflect the above changes.
Binary compatibility with existing veriexecctl binaries is maintained.
2007-05-15 23:47:43 +04:00
|
|
|
veriexec_flags="-k"
|