[PC-BSD Commits] r1954 - pcbsd/trunk/mfsroot-overlay/etc
svn at pcbsd.org
svn at pcbsd.org
Fri May 23 09:24:50 PDT 2008
Author: kris
Date: 2008-05-23 09:24:50 -0700 (Fri, 23 May 2008)
New Revision: 1954
Modified:
pcbsd/trunk/mfsroot-overlay/etc/IntegrityCheck.sh
Log:
Changed location of /usr/bin/cmp to /bin/cmp, since /usr isn't mounted yet
when we do the integrity check
Modified: pcbsd/trunk/mfsroot-overlay/etc/IntegrityCheck.sh
===================================================================
--- pcbsd/trunk/mfsroot-overlay/etc/IntegrityCheck.sh 2008-05-23 09:38:07 UTC (rev 1953)
+++ pcbsd/trunk/mfsroot-overlay/etc/IntegrityCheck.sh 2008-05-23 16:24:50 UTC (rev 1954)
@@ -8,7 +8,7 @@
echo -n "Checking integrity of uzip filesystem... "
-/sbin/md5 /uzip/usr.uzip | /usr/bin/cmp -s /uzip/usr.uzip.md5 -
+/sbin/md5 /uzip/usr.uzip | /bin/cmp -s /uzip/usr.uzip.md5 -
if [ "$?" != "0" ]
then
@@ -24,7 +24,7 @@
if [ "$response" != "n" ]
then
echo -n "Checking integrity of installer archive... "
- /sbin/md5 /mnt/PCBSD.tar.lzma | /usr/bin/cmp -s /mnt/PCBSD.tar.lzma.md5 -
+ /sbin/md5 /mnt/PCBSD.tar.lzma | /bin/cmp -s /mnt/PCBSD.tar.lzma.md5 -
if [ "$?" != "0" ]
then
More information about the Commits
mailing list