mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-11-03 21:02:34 +00:00 
			
		
		
		
	git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3329 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
		
			
				
	
	
		
			32 lines
		
	
	
		
			872 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			872 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
# Put the version, svn revision #, and build date into the Version function in Utils.pm
 | 
						|
 | 
						|
if [ -z "$1" ]
 | 
						|
	then
 | 
						|
	echo "modifyUtils:  Error:  must specify the xCAT version as an argument!"
 | 
						|
	exit
 | 
						|
	fi 
 | 
						|
VER=$1
 | 
						|
 | 
						|
SVNINFO=`svn info 2>/dev/null|grep Revision`
 | 
						|
#/bin/echo -e $SVNINFO
 | 
						|
if [ $? -ne 0 -a -f .svninfo ]; then
 | 
						|
    SVNINFO=`cat .svninfo 2>/dev/null|grep Revision`
 | 
						|
fi
 | 
						|
if [ $? -eq 0 ]
 | 
						|
	then
 | 
						|
		SVNREF="svn r"`echo $SVNINFO|awk '{print $2}'`", "
 | 
						|
	else
 | 
						|
		SVNREF=""
 | 
						|
	fi
 | 
						|
BUILDDATE=`date`
 | 
						|
#echo ". '(${SVNREF}built $BUILDDATE)'"
 | 
						|
 | 
						|
if [ "$(uname)" = "AIX" ]
 | 
						|
then
 | 
						|
	sed -e s/"#XCATVERSIONSUBHERE"/". '$VER'"/ -e s/"#XCATSVNBUILDSUBHERE"/". ' (${SVNREF}built $BUILDDATE)'"/ xCAT/Utils.pm >xCAT/Utils.pm.new
 | 
						|
	mv xCAT/Utils.pm.new xCAT/Utils.pm
 | 
						|
else
 | 
						|
	sed -i -e s/"#XCATVERSIONSUBHERE"/". '$VER'"/ -e s/"#XCATSVNBUILDSUBHERE"/". ' (${SVNREF}built $BUILDDATE)'"/ xCAT/Utils.pm
 | 
						|
fi
 |