File tree Expand file tree Collapse file tree 6 files changed +24
-8
lines changed Expand file tree Collapse file tree 6 files changed +24
-8
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 4.3.22
2+ current_version = 4.3.23
33commit = False
44tag = False
55
Original file line number Diff line number Diff line change 1616
1717# ## Setup directories needed for execution
1818# ############################################################################
19- OpVersion=" 4.3.22 "
19+ OpVersion=" 4.3.23 "
2020
2121LOCALE=$( echo $LANG | cut -d ' .' -f 1)
2222export LANG=C
Original file line number Diff line number Diff line change 1616
1717# ## Setup directories needed for execution
1818# ############################################################################
19- OpVersion=" 4.3.22 "
19+ OpVersion=" 4.3.23 "
2020dbmajor=" "
2121
2222LOCALE=$( echo $LANG | cut -d ' .' -f 1)
@@ -34,12 +34,22 @@ SQL_DIR=${SCRIPT_DIR}/sql
3434
3535GREP=$( which grep)
3636SED=$( which sed)
37- if [ $( uname) = " SunOS" ]
37+ MD5SUM=$( which md5sum)
38+ MD5COL=1
39+
40+ if [ " $( uname) " = " SunOS" ]
3841then
3942 GREP=/usr/xpg4/bin/grep
4043 SED=/usr/xpg4/bin/sed
4144fi
4245
46+ if [ " $( uname) " = " HP-UX" ]; then
47+ if [ -f /usr/local/bin/md5 ]; then
48+ MD5SUM=/usr/local/bin/md5
49+ MD5COL=4
50+ fi
51+ fi
52+
4353ZIP=$( which zip 2> /dev/null)
4454if [ " ${ZIP} " = " " ]
4555 then
143153 cp sed_${V_FILE_TAG} .tmp ${outfile}
144154 rm sed_${V_FILE_TAG} .tmp
145155 else if [ $( uname) = " AIX" ]
156+ then
157+ sed ' s/ *\|/\|/g;s/\| */\|/g;/^$/d' ${outfile} > sed_${V_FILE_TAG} .tmp
158+ cp sed_${V_FILE_TAG} .tmp ${outfile}
159+ rm sed_${V_FILE_TAG} .tmp
160+ else if [ " $( uname) " = " HP-UX" ]
146161 then
147162 sed ' s/ *\|/\|/g;s/\| */\|/g;/^$/d' ${outfile} > sed_${V_FILE_TAG} .tmp
148163 cp sed_${V_FILE_TAG} .tmp ${outfile}
153168 rm sed_${V_FILE_TAG} .tmp
154169 fi
155170 fi
171+ fi
156172 fi
157173done
158174}
196212
197213for file in $( ls -1 opdb* ${V_FILE_TAG} .csv opdb* ${V_FILE_TAG} * .log opdb* ${V_FILE_TAG} * .txt)
198214do
199- MD5=$( md5sum $file | cut -d ' ' -f 1 )
215+ MD5=$( ${MD5SUM} $file | cut -d ' ' -f ${MD5COL} )
200216 echo " ${DBTYPE} |${MD5} |${file} " >> opdb__manifest__${V_FILE_TAG} .txt
201217done
202218
Original file line number Diff line number Diff line change 1616
1717# ## Setup directories needed for execution
1818# ############################################################################
19- OpVersion=" 4.3.22 "
19+ OpVersion=" 4.3.23 "
2020
2121LOCALE=$( echo $LANG | cut -d ' .' -f 1)
2222export LANG=C
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ $current_ts = $values[4]
129129$pkey = $values [5 ]
130130$dmaSourceId = $dmaSourceIdObj [0 ]
131131
132- $op_version = " 4.3.22 "
132+ $op_version = " 4.3.23 "
133133
134134if ($ignorePerfmon -eq " true" ) {
135135 $perfCounterLabel = " NoPerfCounter"
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ __all__ = [
3333 "run_masker" ,
3434]
3535
36- __version__ = "4.3.22 "
36+ __version__ = "4.3.23 "
3737
3838logger = logging .getLogger (__name__ )
3939
You can’t perform that action at this time.
0 commit comments