Originally posted by: cjordan
Folks, I have a problem at a customer site whereby some of there batch scripts are now not working due to an upgrade of there scheduling tool (Tivoli workload Scheduler).
After doing all sorts of debug It looks like the environment vairables are all good etc etc
so the nect thing I did was add the following
truss command to the script to see what was happening.
Once I added the truss - the script all works well
Without the truss command it gives a SIGKILL -
Any ideas what "extra" the truss is doing to get the thing to work??
if
$# -gt 0 ; then
truss -a __AB_INVOKE_PROJECT "${_AB_SAVED_PROJECT_DIR}"/.project.ksh "${_AB_SAVED_PROJECT_DIR}" execute start "$@"
else
truss -a __AB_INVOKE_PROJECT "${_AB_SAVED_PROJECT_DIR}"/.project.ksh "${_AB_SAVED_PROJECT_DIR}" execute start
fi