~mrooney/ecryptfs/nautilus-integration

2 by mhalcrow@us.ibm.com
Initial import of eCryptfs filesystem userspace utilities (mount helper, daemon component,
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