[2731] in Release_Engineering
packs testing
daemon@ATHENA.MIT.EDU (Mark Rosenstein)
Mon Aug 5 17:26:42 1991
Date: Mon, 5 Aug 91 17:26:57 -0400
From: Mark Rosenstein <mar@MIT.EDU>
To: rel-eng@MIT.EDU
Here are the tests I've been running for future reference:
1. What's missing from the last release?
cd srvd.72; find . -print | sort > /tmp/oldfile
cd srvd.73; find . -print | sort > /tmp/newfile
diff /tmp/{old,new}file | grep "<"
2. What empty files are there?
cd /srvd; find . -size 0 -print
3. What permissions are potentially screwed up?
cd /srvd; find . ! -perm 444 ! -perm 644 ! -perm 664 ! -perm 555 ! -perm 755 ! -perm 775 -print
4. What softlinks point to nowhere?
cd /srvd; find . -type d -exec ls -Ll {} \; | grep ">"
5. What manpages are screwed up?
inspect /usr/athena/man/whatis
-Mark