diff options
author | kris <kris@FreeBSD.org> | 2004-03-08 01:37:34 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-08 01:37:34 +0000 |
commit | 27de1aefd4960b4b8f1d112d4bbfd6c8dc5119aa (patch) | |
tree | 3a123cc1bde1828a60524b469ffc1600579b5b29 /Tools | |
parent | f9ea1e49f22be4309d86ef656839aac863b83d65 (diff) | |
download | FreeBSD-ports-27de1aefd4960b4b8f1d112d4bbfd6c8dc5119aa.zip FreeBSD-ports-27de1aefd4960b4b8f1d112d4bbfd6c8dc5119aa.tar.gz |
Remove the integrity testing code now that the corruption bug has been
identified and those machines removed (restricted to Miatas running 5.2)
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/portbuild | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Tools/portbuild/scripts/portbuild b/Tools/portbuild/scripts/portbuild index e375ada..03e8255 100755 --- a/Tools/portbuild/scripts/portbuild +++ b/Tools/portbuild/scripts/portbuild @@ -303,10 +303,6 @@ if [ "${error}" = 0 ]; then fi if [ "${error}" = 0 ]; then - if [ "${branch}" = "4" ]; then - echo "Testing package integrity" - (gzip -t ${chroot}/tmp/packages/All/*.tgz && echo "Package ${pkgname} OK!") || echo "Package ${pkgname} corrupted!" - fi tar -C ${chroot}/tmp -cf - packages | \ ssh -a -x ${user}@$master tar --unlink -C ${pb}/${arch}/${branch} -xvf - ssh -a -x ${user}@$master [ -f ${pb}/${arch}/${branch}/packages/All/${pkgname}${PKGSUFFIX} ] '&&' touch ${pb}/${arch}/${branch}/packages/All/${pkgname}${PKGSUFFIX} |