blob: dd32dd73036549b563eb7041003be02838894704 [file] [log] [blame]
# !/bin/sh
set -x
version=2.2.0
BaseDownloadNFSDir="/home/data/httpd/download.eclipse.org/rt/eclipselink"
buildir=/shared/rt/eclipselink
cd ${buildir}
if [ "input" == "release" ]
then
# When releasing clear all nightly builds
num_builds=0
num_p2_builds=0
num_maven_builds=0
else
num_builds=10
num_p2_builds=5
# Maven: 5 builds * 9 files/build = 45
num_maven_files=45
fi
### Download Site ###
# leave only the last 10 build dirs for the version on the download server
index=0
for contentdir in `ls -dr ${BaseDownloadNFSDir}/nightly/${version}/[0-9]*` ; do
index=`expr $index + 1`
if [ $index -gt $num_builds ] ; then
rm -r $contentdir
fi
done
### P2 Site ###
# leave only the last "num_p2_builds" builds for the version in the nightly P2 repos
index=0
for contentdir in `ls -dr ${BaseDownloadNFSDir}/nightly-updates/${version}*` ; do
index=`expr $index + 1`
if [ $index -gt $num_p2_builds ] ; then
rm -r $contentdir
fi
done
### Maven Site ###
# leave only last 5 days worth of files in the maven repository
index=0
for mvnfile in `ls -r ${BaseDownloadNFSDir}/maven.repo/org/eclipse/persistence/eclipselink/${version}-SNAPSHOT/eclipse*.* ` ; do
index=`expr $index + 1`
if [ $index -gt $num_maven_files ] ; then
rm $mvnfile
fi
done