# If noautoverification was set to 2 while IZ62787 was installed, it # needs to be set back to 0. odmget HACMPcluster 2>/dev/null | grep noautoverification | grep 2 > /dev/null if [ $? -eq 0 ] then odmget HACMPcluster | awk '{ str=$1 $2 $3 sub(/noautoverification=2/, "noautoverification=0", str) print str }' | odmchange -o HACMPcluster fi # If the args field in HACMPtimersvc is set to -D, as a result of # having IZ62787 installed, we need to remove it. odmget HACMPtimersvc 2>/dev/null | grep args | grep D > /dev/null if [ $? -eq 0 ] then odmget -q 'name = "autoclverify"' HACMPtimersvc 2>/dev/null | awk '{ str=$1 $2 $3 sub(/args=\"-D\"/, "args=\"\"", str) print str }' | odmchange -o HACMPtimersvc -q 'name = "autoclverify"' fi true