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

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

version 1.80, 2008/04/17 19:49:16 version 1.81, 2008/07/23 16:05:47
Line 303 
Line 303 
 # world-readable.  # world-readable.
   
 for f in /etc/hostname.* ; do  for f in /etc/hostname.* ; do
         if [ "$(stat -f "%SLp" $f)" != "---" ]; then          if [ ! -e $f ]; then
                   continue
           fi
           if [ "$(stat -Lf "%SLp" $f)" != "---" ]; then
                 echo "\n$f is world readable."                  echo "\n$f is world readable."
         fi          fi
 done  done

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