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

Diff for /src/etc/rc.conf between version 1.191 and 1.192

version 1.191, 2014/07/11 21:58:32 version 1.192, 2014/07/12 10:14:03
Line 1 
Line 1 
 #!/bin/sh -  
 #  
 #       $OpenBSD$  #       $OpenBSD$
   
 # DO NOT EDIT THIS FILE!!  # DO NOT EDIT THIS FILE!!
Line 24 
Line 22 
 rarpd_flags=NO          # for normal use: "-a"  rarpd_flags=NO          # for normal use: "-a"
 bootparamd_flags=NO     # for normal use: ""  bootparamd_flags=NO     # for normal use: ""
 rbootd_flags=NO         # for normal use: ""  rbootd_flags=NO         # for normal use: ""
 sshd_flags=""           # for normal use: ""  sshd_flags=             # for normal use: ""
 named_flags=NO          # for normal use: ""  named_flags=NO          # for normal use: ""
 nsd_flags=NO            # for normal use: "-c /var/nsd/etc/nsd.conf"  nsd_flags=NO            # for normal use: "-c /var/nsd/etc/nsd.conf"
 unbound_flags=NO        # for normal use: "-c /var/unbound/etc/unbound.conf"  unbound_flags=NO        # for normal use: "-c /var/unbound/etc/unbound.conf"
Line 54 
Line 52 
 ifstated_flags=NO       # for normal use: ""  ifstated_flags=NO       # for normal use: ""
 relayd_flags=NO         # for normal use: ""  relayd_flags=NO         # for normal use: ""
 snmpd_flags=NO          # for normal use: ""  snmpd_flags=NO          # for normal use: ""
 smtpd_flags=""          # for normal use: ""  smtpd_flags=            # for normal use: ""
 sndiod_flags=""         # for normal use: ""  sndiod_flags=           # for normal use: ""
 ldapd_flags=NO          # for normal use: ""  ldapd_flags=NO          # for normal use: ""
 npppd_flags=NO          # for normal use: ""  npppd_flags=NO          # for normal use: ""
 inetd_flags=NO          # for normal use: ""  inetd_flags=NO          # for normal use: ""
Line 66 
Line 64 
 tftpproxy_flags=NO      # for normal use: ""  tftpproxy_flags=NO      # for normal use: ""
 ldomd_flags=NO          # for normal use: ""  ldomd_flags=NO          # for normal use: ""
 identd_flags=NO         # for normal use: "-e"  identd_flags=NO         # for normal use: "-e"
 cron_flags=""           # for normal use: ""  cron_flags=             # for normal use: ""
   
 # use -u to disable chroot, see nginx(8)  # use -u to disable chroot, see nginx(8)
 nginx_flags=NO          # for normal use: ""  nginx_flags=NO          # for normal use: ""
Line 76 
Line 74 
 sendmail_flags=NO  sendmail_flags=NO
 spamd_flags=NO          # for normal use: "" and see spamd(8)  spamd_flags=NO          # for normal use: "" and see spamd(8)
 spamd_black=NO          # set to YES to run spamd without greylisting  spamd_black=NO          # set to YES to run spamd without greylisting
 spamlogd_flags=""       # use eg. "-i interface" and see spamlogd(8)  spamlogd_flags=         # use eg. "-i interface" and see spamlogd(8)
   
 # Set to NO if ftpd is running out of inetd  # Set to NO if ftpd is running out of inetd
 ftpd_flags=NO           # for non-inetd use: ""  ftpd_flags=NO           # for non-inetd use: ""
Line 119 
Line 117 
 # rc.d(8) packages scripts  # rc.d(8) packages scripts
 # 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 mountd_flags nfsd_flags ypbind_flags  
   
 [ -f /etc/rc.conf.local ] && . /etc/rc.conf.local  
   
 # special care needed for spamlogd to avoid starting it up and failing  
 # all the time  
 if [  X"${spamd_flags}" = X"NO" -o X"${spamd_black}" != X"NO" ]; then  
         spamlogd_flags=NO  
 fi  
   
 # special care needed for pflogd to avoid starting it up and failing  
 # if pf is not enabled  
 if [ X"${pf}" = X"NO" ]; then  
         pflogd_flags=NO  
 fi  
   
 # backward compatibility  
 : ${mountd_flags=$([ X"${nfs_server-NO}" = XYES ] || echo NO)}  
 : ${nfsd_flags=$([ X"${nfs_server-NO}" = XYES ] && echo "-tun 4" || echo NO)}  
 : ${ypbind_flags=$([ X"`domainname`" != X"" -a -d /var/yp/binding ] || echo NO)}  

Legend:
Removed from v.1.191  
changed lines
  Added in v.1.192