22 lines
601 B
Bash
Executable File
22 lines
601 B
Bash
Executable File
#!/bin/sh
|
|
# Put the version, svn revision #, and build date into the Version function in Version.pm
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo "modifyUtils: Error: must specify the xCAT version as an argument" >&2
|
|
exit
|
|
fi
|
|
|
|
VER=$1
|
|
|
|
BUILDDATE=`date`
|
|
#echo ". '(built $BUILDDATE)'"
|
|
|
|
if [ "$(uname)" = "AIX" ]
|
|
then
|
|
sed -e s/"#XCATVERSIONSUBHERE"/". '$VER'"/ -e s/"#XCATSVNBUILDSUBHERE"/". ' (built $BUILDDATE)'"/ xCAT/Version.pm >xCAT/Version.pm.new
|
|
mv xCAT/Version.pm.new xCAT/Version.pm
|
|
else
|
|
sed -i -e s/"#XCATVERSIONSUBHERE"/". '$VER'"/ -e s/"#XCATSVNBUILDSUBHERE"/". ' (built $BUILDDATE)'"/ xCAT/Version.pm
|
|
fi
|