6828430247
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@813 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
16 lines
338 B
Bash
Executable File
16 lines
338 B
Bash
Executable File
#!/bin/sh
|
|
if [ -f /etc/redhat-release ]
|
|
then
|
|
pkg="redhat"
|
|
else
|
|
pkg="packages"
|
|
fi
|
|
cd `dirname $0`
|
|
tar --exclude .svn -czvf xcat-nbrootoverlay.tar.gz -C overlay/ .
|
|
mv -f *.gz /usr/src/$pkg/SOURCES
|
|
cp LICENSE.html /usr/src/$pkg/BUILD
|
|
cp xcat-core-nbroot.spec /usr/src/$pkg/SOURCES
|
|
rpmbuild -ba xcat-core-nbroot.spec --target $1
|
|
cd -
|
|
|