Home | History | Annotate | Line # | Download | only in defaults
rc.conf revision 1.164
      1  1.164  riastrad #	$NetBSD: rc.conf,v 1.164 2023/06/30 21:44:09 riastradh Exp $
      2  1.128      tron #
      3  1.128      tron # /etc/defaults/rc.conf --
      4  1.128      tron #	default configuration of /etc/rc.conf
      5  1.128      tron #
      6  1.128      tron # see rc.conf(5) for more information.
      7  1.128      tron #
      8  1.128      tron # DO NOT EDIT THIS FILE DIRECTLY; IT MAY BE REPLACED DURING A SYSTEM UPGRADE.
      9  1.128      tron # EDIT /etc/rc.conf INSTEAD.
     10  1.128      tron #
     11  1.128      tron 
     12  1.128      tron #
     13  1.128      tron # Use program=YES to enable program, NO to disable it. program_flags are
     14  1.128      tron # passed to the program on the command line.
     15  1.128      tron #
     16  1.128      tron 
     17  1.128      tron # Uncomment this if you want to use local paths in rc.
     18  1.128      tron #
     19  1.128      tron #export PATH=$PATH:/usr/pkg/sbin:/usr/pkg/bin:/usr/local/sbin:/usr/local/bin
     20  1.128      tron 
     21  1.128      tron # Uncomment the following to execute each /etc/rc.d script in
     22  1.128      tron # the current shell rather than in a subshell.  This may be
     23  1.128      tron # faster on very slow machines that have an expensive fork(2).
     24  1.128      tron #	NOTE:	USE THIS AT YOUR OWN RISK; A ROGUE COMMAND
     25  1.128      tron #		MAY INADVERTENTLY PREVENT BOOT TO MULTIUSER.
     26  1.128      tron #
     27  1.128      tron #rc_fast_and_loose=YES
     28  1.128      tron 
     29  1.128      tron # If rc_silent is true then /etc/rc will suppress most output to
     30  1.128      tron # the console.  The default is taken from the AB_SILENT flag passed
     31  1.128      tron # from the boot loader to the kernel in the boothowto(9) variable.
     32  1.128      tron #
     33  1.128      tron # rc_silent_cmd is executed once for each suppressed line of output.
     34  1.128      tron # Useful values are ":" and "twiddle".
     35  1.128      tron #
     36  1.128      tron rc_silent=$( [ "$(( $(/sbin/sysctl -n kern.boothowto 2>/dev/null || echo 0) \
     37  1.128      tron 		    & 0x40000 ))" != 0 ] && echo true || echo false )
     38  1.128      tron rc_silent_cmd=twiddle
     39  1.128      tron 
     40  1.128      tron # Additional flags to the rcorder(8) that's run by /etc/rc.
     41  1.128      tron #
     42  1.128      tron rc_rcorder_flags=""
     43  1.128      tron 
     44  1.128      tron # The directories searched for rc scripts.
     45  1.128      tron # These directories must be part of the root file system.
     46  1.128      tron rc_directories=/etc/rc.d 
     47  1.128      tron 
     48  1.128      tron # If this is set to NO, shutdown(8) will not run /etc/rc.shutdown.
     49  1.128      tron #
     50  1.128      tron do_rcshutdown=YES
     51  1.128      tron 
     52  1.128      tron # Additional flags to the rcorder(8) that's run by /etc/rc.shutdown.
     53  1.128      tron #
     54  1.128      tron rcshutdown_rcorder_flags=""
     55  1.128      tron 
     56  1.128      tron # If this is non-blank, use as the number of seconds to run a watchdog
     57  1.128      tron # timer which will terminate /etc/rc.shutdown if the timeout expires.
     58  1.128      tron #
     59  1.128      tron rcshutdown_timeout=""
     60  1.128      tron 
     61  1.128      tron 
     62  1.128      tron # Basic network configuration
     63  1.128      tron #
     64  1.128      tron 
     65  1.128      tron # Fully Qualified Internet Domain Name (a.k.a. hostname, e.g. foo.baz.edu).
     66  1.128      tron # If blank, use /etc/myname.
     67  1.128      tron #
     68  1.128      tron hostname=""
     69  1.128      tron 
     70  1.128      tron # If there's only one way out of your IPv4 network, set this to the hostname
     71  1.128      tron # or the IPv4 address of the router that will get your packets off the LAN.
     72  1.128      tron # If blank, use /etc/mygate.
     73  1.128      tron #
     74  1.128      tron defaultroute=""
     75  1.128      tron 
     76  1.128      tron # Same thing for IPv6.  If blank, use /etc/mygate6.
     77  1.128      tron #
     78  1.128      tron defaultroute6=""
     79  1.128      tron 
     80  1.128      tron # The NIS domain name (formerly known as Yellow Pages); not in any way
     81  1.128      tron # related to Internet domain names.
     82  1.128      tron # If blank, use /etc/defaultdomain.
     83  1.128      tron #
     84  1.128      tron domainname=""
     85  1.128      tron 
     86  1.128      tron # Filesystems to mount early in boot-up.
     87  1.128      tron # Note that `/var' is needed in $critical_filesystems_local (or
     88  1.128      tron # implied as part of `/') as certain services that need /var (such as
     89  1.144       roy # dhcpcd) may be needed to get the network operational enough to mount
     90  1.128      tron # the $critical_filesystems_remote.  Prepending "OPTIONAL:"  means it
     91  1.128      tron # will not be an error if that file system is not present in fstab(5).
     92  1.128      tron #
     93  1.128      tron critical_filesystems_local="OPTIONAL:/var"
     94  1.128      tron critical_filesystems_remote="OPTIONAL:/usr"
     95  1.162     alnsn critical_filesystems_zfs=""
     96  1.128      tron 
     97  1.128      tron # Swap device controls.
     98  1.128      tron #
     99  1.128      tron no_swap=NO		# Set to YES if you have purposefully setup no swap
    100  1.128      tron 			# partitions and don't want to be warned about it.
    101  1.128      tron swapoff=YES		# Remove block-type swap partitions upon shutdown
    102  1.128      tron 			# This defaults to yes, so that raids shutdown cleanly
    103  1.146    martin swapoff_umount=auto	# Set to 'manual' to umount the tmpfs partitions listed
    104  1.146    martin 			# in swapoff_umount_fs before removing swap. Set to
    105  1.160   msaitoh 			# 'auto' to umount all tmpfs partitions that contain
    106  1.146    martin 			# no device nodes.
    107  1.146    martin swapoff_umount_fs=	# space-separated list of tmpfs mount points to umount
    108  1.146    martin 			# before removing swap if swapoff_umount=manual
    109  1.128      tron 
    110  1.128      tron # Concatenated disk driver.
    111  1.128      tron #
    112  1.128      tron ccd=YES
    113  1.128      tron 
    114  1.128      tron # RAIDframe driver (manually configured devices).
    115  1.128      tron #
    116  1.128      tron raidframe=YES
    117  1.128      tron 
    118  1.128      tron # Crypto file system.
    119  1.128      tron #
    120  1.128      tron cgd=YES
    121  1.128      tron 
    122  1.128      tron # Logical Volume Manager
    123  1.128      tron #
    124  1.128      tron lvm=NO
    125  1.128      tron 
    126  1.128      tron # One-time actions and programs on boot-up.
    127  1.128      tron #
    128  1.128      tron savecore=YES		savecore_flags="-z"
    129  1.128      tron 			savecore_dir="/var/crash"
    130  1.155  jmcneill resize_disklabel=NO				# resize disklabel to fill disk
    131  1.155  jmcneill resize_gpt=NO					# resize GPT to fill disk
    132  1.133    chopps resize_root=NO					# resize root to fill partition
    133  1.128      tron per_user_tmp=NO					# per-user /tmp directories
    134  1.128      tron per_user_tmp_dir="/private/tmp"			# real storage for /tmp
    135  1.128      tron clear_tmp=YES					# clear /tmp after reboot
    136  1.128      tron update_motd=YES					# updates /etc/motd
    137  1.159       kim update_motd_release=NO	motd_release_tag=""	# release info in /etc/motd
    138  1.142    martin dmesg=YES		dmesg_flags="-t"	# write /var/run/dmesg.boot
    139  1.128      tron accounting=NO					# uses /var/account/acct
    140  1.128      tron newsyslog=NO		newsyslog_flags=""	# trim log files
    141  1.128      tron quota=YES					# check and enable quotas
    142  1.128      tron ldconfig=YES					# rebuild a.out ldconfig cache
    143  1.128      tron sysdb=YES					# build system databases
    144  1.128      tron rndctl=NO		rndctl_flags=""		# configure rndctl(8)
    145  1.128      tron gpio=NO						# configure GPIO devices
    146  1.132  jmcneill modules=YES					# process /etc/modules.conf
    147  1.128      tron 
    148  1.128      tron # cope with other OSes using the real time clock at localtime on this
    149  1.128      tron # machine (by adjusting kern.rtc_offset at boot)
    150  1.128      tron rtclocaltime=NO
    151  1.128      tron 
    152  1.128      tron # NOTE: default coredump name now set in /etc/sysctl.conf
    153  1.128      tron 
    154  1.128      tron #
    155  1.128      tron # File system check flags; default to preen mode, checking file systems
    156  1.128      tron # that are listed in /etc/fstab in parallel as the fsck pass number
    157  1.128      tron # permits. Fix minor faults automatically, and exit with non 0 only
    158  1.128      tron # when major errors occur.
    159  1.128      tron #
    160  1.128      tron fsck_flags=-p
    161  1.128      tron 
    162  1.128      tron # Security setting.  If $securelevel is non-empty, the system securelevel
    163  1.128      tron # is set to this value early in the boot sequence.  Otherwise the default
    164  1.128      tron # action is taken (see init(8)).
    165  1.128      tron #
    166  1.128      tron securelevel=""					# securelevel to set to
    167  1.128      tron 
    168  1.128      tron # To set the IP address of an interface either use
    169  1.128      tron #  ifconfig_xxN="IP-NO"
    170  1.128      tron # where xxN is the interface.  If this variable is not set then
    171  1.128      tron # contents of the file /etc/ifconfig.xxN is used.
    172  1.128      tron 
    173  1.128      tron # Networking startup.
    174  1.128      tron #
    175  1.136       roy # Wait up to 15 seconds for the tentative flag to clear from all addresses.
    176  1.136       roy # Wait up to 5 seconds for the detached flag to clear from all addresses.
    177  1.136       roy # Addresses are detached if there is no carrier, thus we have a small
    178  1.136       roy # wait to see if we get a carrier.
    179  1.136       roy # Even a wired interface may not recognise it has a carrier right away.
    180  1.136       roy ifconfig_wait_dad_flags="-w 15 -W 5"
    181  1.136       roy 
    182  1.128      tron mdnsd=NO
    183  1.128      tron npf=NO
    184  1.157  christos npfd=NO			npfd_flags=""
    185  1.128      tron ipfilter=NO		ipfilter_flags=""	# uses /etc/ipf.conf
    186  1.128      tron ipnat=NO					# uses /etc/ipnat.conf
    187  1.128      tron ipfs=NO			ipfs_flags=""		# save/load ipnat and ipf states
    188  1.128      tron ipsec=NO					# uses /etc/ipsec.conf
    189  1.128      tron ipmon=NO		ipmon_flags="-Dns"	# syslog ipfilter messages
    190  1.128      tron pf=NO			pf_rules="/etc/pf.conf" pf_flags=""
    191  1.128      tron pflogd=NO
    192  1.128      tron ftp_proxy=NO
    193  1.128      tron racoon=NO					# IKE daemon
    194  1.128      tron auto_ifconfig=YES				# config all avail. interfaces
    195  1.128      tron net_interfaces=""				# used only if above is NO
    196  1.128      tron flushroutes=YES					# flush routes in netstart
    197  1.144       roy dhcpcd=NO		dhcpcd_flags="-qM"	# For ifconfig_XXX=dhcp.
    198  1.128      tron ntpdate=NO  		ntpdate_flags="-b -s"	# May need '-u' thru firewall
    199  1.128      tron ppp=YES			ppp_peers=""		# /etc/ppp/peers to call
    200  1.128      tron ip6mode=host					# host, autohost or router
    201  1.128      tron ip6uniquelocal=NO				# IPv6 unique-local forwarding
    202   1.20    martin 
    203   1.20    martin # Special treatment for interfaces that need to be downed on
    204   1.63   dsainty # shutdown (because they might cause unnecessary costs or block resources
    205   1.20    martin # on the peer). All pppoe* interfaces are automatically included in this
    206   1.20    martin # list, add others here manually.
    207   1.44     lukem #force_down_interfaces=""
    208   1.25    martin 
    209   1.25    martin ifwatchd=NO	# execute up/down scripts for in-kernel PPPoE interfaces
    210   1.25    martin 	ifwatchd_flags="-u /etc/ppp/ip-up -d /etc/ppp/ip-down pppoe0"
    211   1.11   thorpej 
    212   1.11   thorpej # ALTQ configuration/monitoring daemon
    213   1.11   thorpej altqd=NO		altqd_flags=""
    214    1.1     lukem 
    215    1.1     lukem # Daemons required by servers.  These are not needed for strictly client use.
    216    1.1     lukem #
    217    1.1     lukem 
    218    1.1     lukem # inetd is used to start the IP-based services enabled in /etc/inetd.conf
    219    1.1     lukem #
    220    1.1     lukem inetd=YES		inetd_flags="-l"	# -l logs libwrap
    221    1.1     lukem 
    222   1.55  christos # identd
    223   1.55  christos #
    224   1.55  christos identd=NO		identd_flags="-b -l -u nobody"
    225   1.55  christos 
    226    1.1     lukem # rpcbind (formerly known as 'portmap') is used to look up RPC-based services.
    227    1.1     lukem #
    228    1.1     lukem rpcbind=NO		rpcbind_flags="-l"	# -l logs libwrap
    229    1.1     lukem 
    230    1.1     lukem # Commonly used daemons.
    231    1.1     lukem #
    232    1.1     lukem syslogd=YES		syslogd_flags="-s"	# -s "secure" unix domain only
    233    1.1     lukem cron=YES
    234   1.10     lukem named=NO		named_flags=""		# see below for named_chrootdir
    235    1.1     lukem timed=NO		timed_flags=""
    236   1.26     lukem ntpd=NO			ntpd_flags=""		# see below for ntpd_chrootdir
    237   1.90     pavel # The default setting for postfix here is YES, but gets re-examined by
    238   1.90     pavel # the rc.d/postfix startup script when it runs.  The script sets
    239   1.90     pavel # _rc_d_postfix to "check", and then causes all rc.conf settings to
    240   1.90     pavel # be re-evaluated.  If the value of $postfix after this is "check",
    241   1.90     pavel # the script then checks to see if /etc/mailer.conf selects the system
    242   1.90     pavel # postfix. If not, it does print a warning and does not start postfix 
    243   1.90     pavel # to avoid conflict with a different MTA.
    244   1.90     pavel postfix=${_rc_d_postfix:-YES}
    245    1.1     lukem lpd=NO			lpd_flags="-s"		# -s "secure" unix domain only
    246    1.1     lukem sshd=NO			sshd_flags=""
    247  1.121  riastrad ssh_keygen_flags=""
    248   1.68     peter ftpd=NO			ftpd_flags="-ll"
    249   1.97    mishka httpd=NO		httpd_flags=""
    250   1.97    mishka 			httpd_wwwdir="/var/www"
    251   1.97    mishka 			httpd_wwwuser="_httpd"
    252   1.47    atatat 
    253   1.10     lukem # To run the named(8) DNS server as an unprivileged user under a
    254   1.10     lukem # chroot(2) cage, uncomment the following after migrating the contents
    255   1.23     lukem # of /etc/namedb to /var/chroot/named/etc/namedb
    256   1.10     lukem #
    257   1.23     lukem #named_chrootdir="/var/chroot/named"
    258   1.26     lukem 
    259   1.26     lukem # To run the ntpd(8) NTP server as an unprivileged user under a
    260   1.39     lukem # chroot(2) cage, uncomment the following, after ensuring that:
    261   1.39     lukem #	- The kernel has "pseudo-device clockctl" compiled in
    262   1.39     lukem #	- /dev/clockctl is present
    263   1.26     lukem #
    264   1.26     lukem #ntpd_chrootdir="/var/chroot/ntpd"
    265    1.1     lukem 
    266    1.1     lukem # Routing daemons.
    267    1.1     lukem #
    268    1.1     lukem routed=NO		routed_flags="-q"
    269   1.13        pk gated=NO
    270    1.1     lukem mrouted=NO		mrouted_flags=""
    271    1.1     lukem route6d=NO		route6d_flags=""
    272  1.110    kefren ldpd=NO
    273    1.1     lukem 
    274    1.1     lukem # Daemons used to boot other hosts over a network.
    275    1.1     lukem #
    276    1.1     lukem rarpd=NO		rarpd_flags="-a"
    277    1.1     lukem bootparamd=NO		bootparamd_flags=""
    278    1.1     lukem dhcpd=NO		dhcpd_flags="-q"
    279  1.140        is dhcpd6=NO		dhcpd6_flags="-q -cf /etc/dhcpd6.conf"
    280    1.1     lukem dhcrelay=NO		dhcrelay_flags=""
    281    1.1     lukem rbootd=NO		rbootd_flags=""
    282    1.1     lukem mopd=NO			mopd_flags="-a"
    283   1.16  fredette ndbootd=NO		ndbootd_flags="-s /tftpboot /tftpboot/bootyy"
    284    1.1     lukem rtadvd=NO		rtadvd_flags=""
    285  1.118   tsutsui isibootd=NO		isibootd_flags=""
    286    1.1     lukem 
    287    1.1     lukem # X11 daemons.
    288    1.1     lukem #
    289    1.1     lukem xfs=NO			xfs_flags=""		# X11 font server
    290    1.1     lukem xdm=NO			xdm_flags=""		# X11 display manager; needs
    291    1.1     lukem 						# wscons=YES for local displays.
    292    1.1     lukem 
    293  1.112  jmcneill # Update fontconfig cache at boot
    294  1.112  jmcneill fccache=YES
    295  1.112  jmcneill 
    296    1.1     lukem # YP (NIS) daemons.
    297    1.1     lukem #
    298    1.1     lukem ypbind=NO		ypbind_flags=""
    299    1.1     lukem ypserv=NO		ypserv_flags="-d"
    300    1.1     lukem yppasswdd=NO		yppasswdd_flags=""
    301    1.1     lukem 
    302    1.1     lukem # NFS daemons and parameters.
    303    1.1     lukem #
    304   1.18     lukem mountd=NO		mountd_flags=""		# NFS mount requests daemon
    305    1.1     lukem nfs_client=NO					# enable client daemons
    306    1.1     lukem nfs_server=NO					# enable server daemons
    307  1.120  christos 			nfsd_flags=""
    308    1.1     lukem lockd=NO		lockd_flags=""
    309    1.1     lukem statd=NO		statd_flags=""
    310    1.1     lukem amd=NO			amd_flags="-l syslog -x error,noinfo,nostats"
    311    1.1     lukem 			amd_dir=/amd			# mount dir
    312    1.1     lukem 
    313    1.1     lukem # Heimdal Kerberos 5 KDC (with Kerberos IV compatibility)
    314   1.91   mlelstv kdc=NO			kdc_flags="--detach"
    315    1.5    martin 
    316   1.73       agc # iSCSI target
    317   1.73       agc iscsi_target=NO		iscsi_target_flags=""
    318  1.131     joerg # iSCSI kernel initiator
    319  1.131     joerg iscsid=NO
    320  1.163   mlelstv # iSCSI attach from /etc/iscsi/volumes
    321  1.163   mlelstv iscsid_volumes=YES
    322   1.73       agc 
    323   1.75    rpaulo # WPA daemons.
    324  1.153       roy hostapd=NO		hostapd_flags="-Bs /etc/hostapd.conf"
    325  1.147       roy wpa_supplicant=NO	wpa_supplicant_flags="-Ms -c /etc/wpa_supplicant.conf"
    326   1.75    rpaulo 
    327  1.113    plunky # Bluetooth configuration
    328  1.113    plunky bluetooth=NO
    329  1.113    plunky # and the following are used when bluetooth=YES
    330  1.113    plunky btconfig_devices=""                             # all
    331  1.113    plunky bthcid=YES              bthcid_flags=""
    332  1.113    plunky sdpd=YES                sdpd_flags=""
    333   1.78   gdamore 
    334    1.1     lukem # Other daemons.
    335    1.1     lukem #
    336   1.69    tsarna rwhod=NO		rwhod_flags="-u _rwhod"
    337  1.115       riz devpubd=NO		devpubd_flags=""	# autocreate nodes for new devs
    338   1.87   xtraeme envsys=NO					# Set /etc/envsys.conf preferences
    339  1.141  christos autofs=NO		automount_flags=""
    340  1.141  christos 			automountd_flags=""
    341  1.141  christos 			autounmountd_flags=""
    342    1.1     lukem 
    343    1.1     lukem # Hardware daemons.
    344    1.1     lukem #
    345    1.1     lukem apmd=NO			apmd_flags=""		# APM power management daemon.
    346   1.49   thorpej powerd=NO		powerd_flags=""		# power management daemon
    347    1.1     lukem screenblank=NO		screenblank_flags=""	# wscons and FBIO screenblanker
    348   1.24  augustss 
    349   1.24  augustss moused=NO					# serial mouse handler
    350   1.24  augustss 			moused_flags="-p /dev/tty00"
    351   1.41   thorpej 
    352   1.41   thorpej wdogctl=NO					# watchdog timer control
    353   1.41   thorpej #			wdogctl_flags="-k devicename"
    354   1.76    rpaulo irdaattach=NO					# attach serial lines to IrDA 
    355   1.76    rpaulo 			irdaattach_flags="tty00"
    356    1.1     lukem 
    357    1.1     lukem # Configuration of "wscons" console driver virtual screens.
    358    1.1     lukem #
    359    1.1     lukem wscons=NO		wscons_flags=""		# setup wscons from wscons.conf
    360   1.40  christos 
    361   1.40  christos # Configuration of "wsmoused" console driver cut-n-paste support
    362   1.40  christos #
    363   1.40  christos wsmoused=NO		wsmoused_flags=""
    364   1.42  takemura 
    365   1.42  takemura # Configuration of "tpctl" touch panel calibration utility
    366   1.42  takemura #
    367   1.42  takemura tpctl=NO		tpctl_flags=""
    368   1.43      kent 
    369   1.43      kent # Mixer setting
    370   1.43      kent #
    371   1.43      kent mixerctl=NO		mixerctl_mixers=""	# "mixer0 mixer1" means saving
    372   1.43      kent 						# and restoring their settings
    373   1.53  uebayasi 
    374   1.53  uebayasi # Vi recovery notification.  Vi(1)'s -r option can recover files which were
    375   1.63   dsainty # accidentally closed.  See vi(1) for more details.
    376   1.53  uebayasi # 
    377   1.53  uebayasi virecover=YES
    378   1.54     blymn 
    379   1.82      elad # Veriexec signature loading.
    380   1.54     blymn #
    381   1.54     blymn veriexec=NO
    382   1.70      elad veriexec_strict=0
    383   1.70      elad veriexec_verbose=0
    384   1.86      elad veriexec_flags="-k"
    385  1.114       jym 
    386  1.117       tls # Entropy load/save to/from /dev/random at startup/shutdown
    387  1.117       tls #
    388  1.117       tls random_seed=YES
    389  1.119     joerg 
    390  1.161  riastrad # Set to `check' to abort multi-user boot if not enough entropy, or
    391  1.164  riastrad # `wait' to wait until enough entropy, or `' (empty) to boot without
    392  1.164  riastrad # waitingor checking.
    393  1.161  riastrad #
    394  1.164  riastrad entropy="wait"
    395  1.161  riastrad 
    396  1.119     joerg # Creating / updating of man page index on boot
    397  1.119     joerg makemandb=YES
    398  1.130  christos 
    399  1.148      maxv # Disable Simultaneous Multi-Threading
    400  1.148      maxv smtoff=NO
    401  1.148      maxv 
    402  1.158  christos # blocklist daemon, needs npf
    403  1.158  christos blocklistd=NO
    404  1.134  christos 
    405  1.134  christos # IPv6 address selection policy
    406  1.135    plunky ip6addrctl=NO
    407  1.134  christos # ipv6_prefer, ipv4_prefer, auto
    408  1.134  christos ip6addrctl_policy=auto
    409  1.134  christos ip6addrctl_verbose=NO
    410  1.137  christos 
    411  1.137  christos # Unbound
    412  1.137  christos unbound=NO
    413  1.137  christos unbound_chrootdir=/var/chroot/unbound
    414  1.139  christos 
    415  1.139  christos # Nsd
    416  1.139  christos nsd=NO
    417  1.139  christos nsd_chrootdir=/var/chroot/nsd
    418  1.139  christos nsd_flags="-t ${nsd_chrootdir}"
    419  1.152      brad 
    420  1.152      brad # ZFS
    421  1.152      brad zfs=NO
    422