[BACK]Return to security CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/Attic/security between version 1.79 and 1.80

version 1.79, 2007/10/23 11:19:58 version 1.80, 2008/04/17 19:49:16
Line 299 
Line 299 
         echo "\nThere is an entry for uudecode in the /etc/mail/aliases file."          echo "\nThere is an entry for uudecode in the /etc/mail/aliases file."
 fi  fi
   
   # hostname.if files may contain secrets and should not be
   # world-readable.
   
   for f in /etc/hostname.* ; do
           if [ "$(stat -f "%SLp" $f)" != "---" ]; then
                   echo "\n$f is world readable."
           fi
   done
   
 # Files that should not have + signs.  # Files that should not have + signs.
 list="/etc/hosts.equiv /etc/shosts.equiv /etc/hosts.lpd"  list="/etc/hosts.equiv /etc/shosts.equiv /etc/hosts.lpd"
 for f in $list ; do  for f in $list ; do

Legend:
Removed from v.1.79  
changed lines
  Added in v.1.80