~ecryptfs/ecryptfs/trunk

« back to all changes in this revision

Viewing changes to scripts/validate-dir.sh

  • Committer: mhalcrow@us.ibm.com
  • Date: 2007-11-06 22:56:01 UTC
  • Revision ID: git-v1:f8357de9d554b274497b5cce9db4347254b7e7eb
Initial import of eCryptfs filesystem userspace utilities (mount helper, daemon component,
etc.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
FILES="AUTHORS COPYING ChangeLog INSTALL Makefile.am NEWS README THANKS configure"
 
4
 
 
5
for file in $FILES; do
 
6
        if [ -e $file ]; then
 
7
                echo "$file found"
 
8
        else
 
9
                echo "$file not found; returning 1"
 
10
                exit 1
 
11
        fi
 
12
done
 
13
 
 
14
echo "Directory check successful; returning 0"
 
15
 
 
16
exit 0