2007-12-12 15:24:27 +00:00
|
|
|
#!/bin/sh
|
|
|
|
if [ -f /etc/redhat-release ]
|
|
|
|
then
|
|
|
|
pkg="redhat"
|
|
|
|
else
|
|
|
|
pkg="packages"
|
|
|
|
fi
|
2007-10-26 22:44:33 +00:00
|
|
|
cd `dirname $0`
|
|
|
|
tar --exclude .svn -czvf xcat-nbrootoverlay.tar.gz -C overlay/ .
|
2007-12-12 15:24:27 +00:00
|
|
|
mv -f *.gz /usr/src/$pkg/SOURCES
|
2008-03-18 20:02:53 +00:00
|
|
|
cp LICENSE.html /usr/src/$pkg/BUILD
|
2007-12-12 15:24:27 +00:00
|
|
|
cp xcat-core-nbroot.spec /usr/src/$pkg/SOURCES
|
|
|
|
rpmbuild -ba xcat-core-nbroot.spec --target $1
|
2007-10-26 22:44:33 +00:00
|
|
|
cd -
|
|
|
|
|