NetBSD/etc/rc.conf

141 lines
4.5 KiB
Plaintext
Raw Normal View History

# $NetBSD: rc.conf,v 1.72 2000/02/05 17:02:43 itojun Exp $
#
# see rc.conf(5) for more information.
# 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
# Use program=YES to enable program, NO to disable it. program_flags are
# passed to the program on the command line.
# If this is not set to YES, the system will drop into single-user mode.
rc_configured=NO
# If this is set to NO, shutdown(8) will not run /etc/rc.shutdown.
do_rcshutdown=YES
# Basic network configuration
# Fully Qualified Internet Domain Name (a.k.a. hostname, e.g. foo.baz.edu)
1998-01-26 15:01:35 +03:00
hostname="" # if blank, use /etc/myname
# if there's only one way out of your network, set this to the hostname
# or the IP address of the router that will get your packets off the LAN.
1998-01-26 15:01:35 +03:00
defaultroute="" # if blank, use /etc/mygate
# the NIS domain name (formerly known as Yellow Pages); not in any way
# related to Internet domain names.
domainname="" # if blank, use /etc/defaultdomain
# Filesystems to mount early in boot-up
critical_filesystems_beforenet="/usr /var"
critical_filesystems=""
# Set this to YES if you have purposefully setup no swap partitions and
# don't want to be warned about it
1998-01-26 15:01:35 +03:00
no_swap=NO
# One-time actions and programs on boot-up.
lkm=NO # run /etc/rc.lkm
1999-12-06 23:38:13 +03:00
savecore=YES savecore_flags="-z"
update_motd=YES # updates /etc/motd
dmesg=YES dmesg_flags="" # write /var/run/dmesg.boot
accounting=NO # needs /var/account/acct
1999-12-23 18:07:21 +03:00
# default core name template. If $defcorename is non-empty, this value will be
1999-09-28 18:53:17 +04:00
# used for core dumps names for programs that didn't get their per-process
# template set (see sysctl(3) and sysctl(8)).
1999-12-23 18:07:21 +03:00
defcorename=""
1999-09-28 18:53:17 +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)).
1999-12-23 18:07:21 +03:00
securelevel="" # securelevel to set to
# To set the IP address of an interface either use
# ifconfig_xxN="IP-NO"
# where xxN is the interface. The this variable is not set the
# contents of the file /etc/ifconfig.xxN is used.
# Networking startup
ipfilter=NO # uses /etc/ipf.conf
ipnat=NO # uses /etc/ipnat.conf
ipmon=NO ipmon_flags="-sn" # syslog ipfilter messages
auto_ifconfig=YES # config all avail. interfaces
net_interfaces="" # used only if above is NO
flushroutes=YES # flush routes in netstart
dhclient=NO # behave as a DHCP client
dhclient_flags="" # blank: config all interfaces
ntpdate=NO ntpdate_hosts="" # blank: hosts in /etc/ntp.conf
ppp_peers="" # /etc/ppp/peers to call
ip6mode=host # host, autohost or router
rtsol=NO rtsol_flags="" # for ip6mode=autohost only
# Daemons required by servers. These are not needed for strictly client use.
# inetd is used to start many IP-based services.
1997-09-07 23:13:50 +04:00
inetd=YES inetd_flags="-l" # -l logs libwrap
# portmap is used to look up RPC-based services.
portmap=NO portmap_flags="-l" # -l logs libwrap
# Commonly used daemons
syslogd=YES syslogd_flags="-s" # -s "secure" unix domain only
cron=YES
named=NO named_flags=""
timed=NO timed_flags=""
xntpd=NO xntpd_flags=""
sendmail=NO sendmail_flags="-bd -q30m"
lpd=NO lpd_flags="-s" # -s "secure" unix domain only
# Routing daemons
routed=NO routed_flags="-q"
gated=NO gated_flags=""
mrouted=NO mrouted_flags=""
route6d=NO route6d_flags=""
rtsold=NO rtsold_flags="" # for ip6mode=autohost only
# Daemons used to boot other hosts over a network
rarpd=NO rarpd_flags="-a"
bootparamd=NO bootparamd_flags=""
1997-12-03 19:41:53 +03:00
dhcpd=NO dhcpd_flags="-q"
dhcrelay=NO dhcrelay_flags=""
rbootd=NO rbootd_flags=""
mopd=NO mopd_flags="-a"
rtadvd=NO rtadvd_flags=""
# X11 daemons:
xfs=NO xfs_flags="" # X11 font server
xdm=NO xdm_flags="" # X11 display manager
# YP (NIS) daemons
ypbind=NO ypbind_flags=""
ypserv=NO ypserv_flags="-d"
yppasswdd=NO yppasswdd_flags=""
# NFS daemons and parameters
nfs_client=NO # enable client daemons
nfsiod_flags="-n 4"
nfs_server=NO # enable server daemons
mountd_flags=""
nfsd_flags="-tun 4"
lockd=NO lockd_flags=""
statd=NO statd_flags=""
amd=NO amd_flags="-l syslog -x error,noinfo,nostats"
amd_dir=/amd # mount dir
amd_master=/etc/amd/master # master map
# Other daemons
rwhod=NO
kerberos=NO
# Hardware daemons
apmd=NO apmd_flags="" # APM power management daemon.
screenblank=NO screenblank_flags="" # wscons and FBIO screenblanker
# configuration of "wscons" console driver virtual screens
wscons=NO wscons_flags="" # run /etc/rc.wscons
# Add local configurations
if [ -f /etc/rc.local.conf ]; then
. /etc/rc.local.conf
fi