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

Diff for /src/etc/rc.conf between version 1.174 and 1.175

version 1.174, 2012/11/17 07:51:35 version 1.175, 2012/11/17 16:25:44
Line 132 
Line 132 
 # started in the specified order and stopped in reverse order  # started in the specified order and stopped in reverse order
 pkg_scripts=  pkg_scripts=
   
   unset inetd_flags rwhod_flags portmap_flags kdc_flags kadmind_flags
   unset kpasswdd_flags nfsd_flags mountd_flags lockd_flags
   unset statd_flags amd_flags ypbind_flags sndiod_flags
   
 [ -f /etc/rc.conf.local ] && . /etc/rc.conf.local  [ -f /etc/rc.conf.local ] && . /etc/rc.conf.local
   
 # special care needed for spamlogd to avoid starting it up and failing  # special care needed for spamlogd to avoid starting it up and failing
Line 145 
Line 149 
 if [ X"${pf}" = X"NO" ]; then  if [ X"${pf}" = X"NO" ]; then
         pflogd_flags=NO          pflogd_flags=NO
 fi  fi
   
   # backward compatibility
   : ${inetd_flags=$([ X"${inetd-YES}" = XYES ] || echo NO)}
   : ${rwhod_flags=$([ X"${rwhod-NO}" = XYES ] || echo NO)}
   : ${portmap_flags=$([ X"${portmap-NO}" = XYES ] || echo NO)}
   : ${kdc_flags=$([ X"${krb5_master_kdc-NO}" = XYES -o X"${krb5_slave_kdc-NO}" = XYES ] || echo NO)}
   : ${kadmind_flags=$([ X"${krb5_master_kdc-NO}" = XYES ] || echo NO)}
   : ${kpasswdd_flags=$([ X"${krb5_master_kdc-NO}" = XYES ] || echo NO)}
   : ${nfsd_flags=$([ X"${nfs_server-NO}" = XYES ] && echo "-tun 4" || echo NO)}
   : ${mountd_flags=$([ X"${nfs_server-NO}" = XYES ] || echo NO)}
   : ${lockd_flags=$([ X"${lockd-NO}" = XYES ] || echo NO)}
   : ${statd_flags=$([ X"${lockd-NO}" = XYES ] || echo NO)}
   : ${amd_flags=$([ X"${amd-NO}" = XYES ] || echo NO)}
   : ${ypbind_flags=$([ X"`domainname`" != X"" -a -d /var/yp/binding ] || echo NO)}
   : ${sndiod_flags=${aucat_flags-}}

Legend:
Removed from v.1.174  
changed lines
  Added in v.1.175