[BACK]Return to rc.conf CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/rc.conf between version 1.141 and 1.142

version 1.141, 2011/02/12 11:21:01 version 1.142, 2011/07/06 18:55:36
Line 47 
Line 47 
 smtpd_flags=NO          # for normal use: ""  smtpd_flags=NO          # for normal use: ""
 aucat_flags=NO          # for normal use: ""  aucat_flags=NO          # for normal use: ""
 ldapd_flags=NO          # for normal use: ""  ldapd_flags=NO          # for normal use: ""
   inetd_flags=""          # for normal use: ""
   rwhod_flags=NO          # for normal use: ""
   
 # use -u to disable chroot, see httpd(8)  # use -u to disable chroot, see httpd(8)
 httpd_flags=NO          # for normal use: "" (or "-DSSL" after reading ssl(8))  httpd_flags=NO          # for normal use: "" (or "-DSSL" after reading ssl(8))
Line 70 
Line 72 
 wsmoused_flags=NO       # for ps/2 or usb mice: "", serial: "-p /dev/cua00"  wsmoused_flags=NO       # for ps/2 or usb mice: "", serial: "-p /dev/cua00"
   
 # set the following to "YES" to turn them on  # set the following to "YES" to turn them on
 rwhod=NO  
 nfs_server=NO           # see sysctl.conf for nfs client configuration  nfs_server=NO           # see sysctl.conf for nfs client configuration
 lockd=NO  lockd=NO
 amd=NO  amd=NO
Line 78 
Line 79 
 ipsec=NO                # IPsec  ipsec=NO                # IPsec
 bt=NO                   # Bluetooth  bt=NO                   # Bluetooth
 portmap=NO              # Note: inetd(8) rpc services need portmap too  portmap=NO              # Note: inetd(8) rpc services need portmap too
 inetd=YES               # almost always needed  
 check_quotas=YES        # NO may be desirable in some YP environments  check_quotas=YES        # NO may be desirable in some YP environments
 accounting=NO           # process accounting (using /var/account/acct)  accounting=NO           # process accounting (using /var/account/acct)
   
Line 113 
Line 113 
   
 local_rcconf="/etc/rc.conf.local"  local_rcconf="/etc/rc.conf.local"
   
   unset inetd_flags rwhod_flags
   
 [ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line  [ -f ${local_rcconf} ] && . ${local_rcconf} # Do not edit this line
   
   # backward compatibility for inetd and rwhod
   : ${inetd_flags=$([ X"${inetd-YES}" = XYES ] || echo NO)}
   : ${rwhod_flags=$([ X"${rwhod-NO}" = XYES ] || echo NO)}

Legend:
Removed from v.1.141  
changed lines
  Added in v.1.142