2007-12-12 15:24:27 +00:00
|
|
|
#!/bin/sh
|
|
|
|
if [ -f /etc/redhat-release ]
|
|
|
|
then
|
|
|
|
pkg="redhat"
|
|
|
|
else
|
|
|
|
pkg="packages"
|
|
|
|
fi
|
2007-10-29 19:36:20 +00:00
|
|
|
cd `dirname $0`
|
|
|
|
tar --exclude .svn -czvf postscripts.tar.gz postscripts LICENSE.html
|
|
|
|
tar --exclude .svn -czvf templates.tar.gz templates
|
2007-12-12 15:24:27 +00:00
|
|
|
mv -f *.gz /usr/src/$pkg/SOURCES
|
|
|
|
cp xcat.conf /usr/src/$pkg/SOURCES
|
|
|
|
rm /usr/src/$pkg/RPMS/noarch/xCAT-2.0*rpm
|
2007-10-29 19:36:20 +00:00
|
|
|
rpmbuild -ba xCAT.spec
|
|
|
|
cd -
|
|
|
|
|