2008-02-22 21:54:44 +00:00
|
|
|
#!/bin/sh
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
OSNAME=$(uname)
|
2008-06-03 19:34:04 +00:00
|
|
|
VER="2.1"
|
2007-10-26 22:44:33 +00:00
|
|
|
|
|
|
|
if [ "$OSNAME" = "AIX" ]
|
|
|
|
then
|
2008-01-17 20:33:12 +00:00
|
|
|
|
2008-06-03 19:34:04 +00:00
|
|
|
source=$PWD
|
|
|
|
cd /opt/freeware/src/packages/SOURCES
|
|
|
|
rm -f xCAT-server-$VER; ln -s $source/xCAT-server xCAT-server-$VER
|
|
|
|
rm -f /opt/freeware/src/packages/SRPMS/xCAT-server*rpm /opt/freeware/src/packages/RPMS/ppc/xCAT-server*rpm
|
|
|
|
echo '.svn' > /tmp/xcat-excludes
|
|
|
|
tar -X /tmp/xcat-excludes -cf xCAT-server-$VER.tar xCAT-server-$VER
|
|
|
|
gzip -f /opt/freeware/src/packages/SOURCES/xCAT-server-$VER.tar
|
|
|
|
cd $source/xCAT-server
|
|
|
|
rpm -ba xCAT-server.spec
|
2007-10-26 22:44:33 +00:00
|
|
|
else
|
|
|
|
if [ -f /etc/redhat-release ]
|
|
|
|
then
|
|
|
|
pkg="redhat"
|
|
|
|
else
|
|
|
|
pkg="packages"
|
|
|
|
fi
|
2008-06-03 19:34:04 +00:00
|
|
|
source=$PWD
|
2007-10-26 22:44:33 +00:00
|
|
|
|
2008-06-03 19:34:04 +00:00
|
|
|
# Trying to avoid having the version on the xCAT-server dir name in svn
|
|
|
|
set -x
|
|
|
|
cd /usr/src/$pkg/SOURCES
|
|
|
|
rm -f xCAT-server-$VER; ln -s $source/xCAT-server xCAT-server-$VER # have to make tar think it is in xCAT-server-2.1
|
|
|
|
rm -f xCAT-server-$VER.tar.gz
|
|
|
|
tar -czhf xCAT-server-$VER.tar.gz --exclude=.svn --exclude=.project xCAT-server-$VER
|
2008-06-03 15:03:32 +00:00
|
|
|
rm -f /usr/src/$pkg/SRPMS/xCAT-server-$VER*rpm /usr/src/$pkg/RPMS/noarch/xCAT-server-$VER*rpm
|
2008-06-03 19:34:04 +00:00
|
|
|
rpmbuild -ta xCAT-server-$VER.tar.gz
|
2007-10-26 22:44:33 +00:00
|
|
|
fi
|