1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
#!/bin/ksh
# ================================== start of head.h ================================
## Copyright 2009- ECMWF.
## This software is licensed under the terms of the Apache Licence version 2.0
## which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
## In applying this licence, ECMWF does not waive the privileges and immunities
## granted to it by virtue of its status as an intergovernmental organisation
## nor does it submit to any jurisdiction.
%manual
#This is the manual from the head.h file
%end
%comment
#This is the comment from the head.h file
%end
set -e # stop the shell on first error
set -u # fail when using an undefined variable
set -x # echo script lines as they are executed
set -o pipefail # fail if last(rightmost) command exits with a non-zero status
# Defines the three variables that are needed for any
# communication with ECF
export ECF_PORT=%ECF_PORT% # The port number on the server
export ECF_HOST=%ECF_HOST% # The hostname where the server is running
export ECF_NAME=%ECF_NAME% # The name of this current task
export ECF_PASS=%ECF_PASS% # A unique password
export ECF_TRYNO=%ECF_TRYNO% # Current try number of the task
if [[ "%ECF_SSL:%" != "" ]] ; then
export ECF_SSL=%ECF_SSL:%
fi
# to debug client communication with the server, enable this environment
#export ECF_DEBUG_CLIENT=
# SANITY Check, typically only valid for new platforms. make sure hostname is resolvable to an IP address
os_name=$(uname -s)
if [[ $os_name = Linux ]] ; then
host %ECF_HOST%
fi
# Typically we dont set this, however the zombie automated test require this.
# it allows us to disambiguate a zomie from a real job.
export ECF_RID=$$
# Tell ECF_ we have stated
# The ECF_ variable ECF_RID will be set to parameter of smsinit
# Here we give the current PID.
# Defined a error hanlder
ERROR() {
echo "ERROR() called"
set +e # Clear -e flag, so we don't fail
wait # wait for background process to stop
%ECF_CLIENT_EXE_PATH:ecflow_client% --abort # Notify ECF_ that something went wrong
trap 0 # Remove the trap
exit 0 # End the script
}
# Trap any calls to exit and errors caught by the -e flag
trap ERROR 0
# Trap any signal that may cause the script to fail
trap '{ echo "Killed by a signal"; ERROR ; }' 1 2 3 4 5 6 7 8 10 12 13 15
#smsinit $$
%ECF_CLIENT_EXE_PATH:ecflow_client% --init=$$
echo $?
# ================================== end of head.h ================================
|