git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1573 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
OSNAME=$(uname)
 | 
						|
version='2.1'
 | 
						|
 | 
						|
if [ "$OSNAME" = "AIX" ]
 | 
						|
then
 | 
						|
    source=$PWD
 | 
						|
    cd /opt/freeware/src/packages/SOURCES
 | 
						|
    rm -f xCAT-rmc-$version; ln -s $source/xCAT-rmc xCAT-rmc-$version
 | 
						|
    rm -f /opt/freeware/src/packages/SRPMS/xCAT-rmc*rpm /opt/freeware/src/packages/RPMS/ppc/xCAT-rmc*rpm
 | 
						|
    echo '.svn' > /tmp/xcat-excludes
 | 
						|
    tar -X /tmp/xcat-excludes -cf xCAT-rmc-$version.tar xCAT-rmc-$version
 | 
						|
    gzip -f /opt/freeware/src/packages/SOURCES/xCAT-rmc-$version.tar
 | 
						|
    cd $source/xCAT-rmc
 | 
						|
    rpm -ba xCAT-rmc.spec
 | 
						|
    #rpm -Uvh /opt/freeware/src/packages/RPMS/ppc/xCAT-rmc*rpm
 | 
						|
 | 
						|
else
 | 
						|
	if [ -f /etc/redhat-release ]
 | 
						|
	then
 | 
						|
   		pkg="redhat"
 | 
						|
	else
 | 
						|
   		pkg="packages"
 | 
						|
	fi
 | 
						|
	source=$PWD
 | 
						|
 | 
						|
	# Trying to avoid having the version  on the xCAT-rmc dir name in svn
 | 
						|
	set -x
 | 
						|
	cd /usr/src/$pkg/SOURCES
 | 
						|
	rm -f xCAT-rmc-$version; ln -s $source/xCAT-rmc xCAT-rmc-$version   # have to make tar think it is in xCAT-rmc-2.0
 | 
						|
	rm -f xCAT-rmc-$version.tar.gz
 | 
						|
	tar -czhf xCAT-rmc-$version.tar.gz --exclude=.svn --exclude=.project xCAT-rmc-$version
 | 
						|
	rm -f /usr/src/$pkg/SRPMS/xCAT-rmc-$version*rpm /usr/src/$pkg/RPMS/noarch/xCAT-rmc-$version*rpm
 | 
						|
	rpmbuild -ta xCAT-rmc-$version.tar.gz
 | 
						|
	#rpm -Uvh /usr/src/$pkg/RPMS/noarch/xCAT-rmc-$version*rpm
 | 
						|
fi
 |