#!/bin/ksh
#  ALTRAN_PROLOG_BEGIN_TAG
#  This is an automatically generated prolog.
#
#  Copyright (C) Altran ACT S.A.S. 2017,2021.  All rights reserved.
#
#  ALTRAN_PROLOG_END_TAG
#
# IBM_PROLOG_BEGIN_TAG 
# This is an automatically generated prolog. 
#  
# 61haes_r714 src/43haes/usr/sbin/cluster/events/site_down_complete.sh 1.2 
#  
# Licensed Materials - Property of IBM 
#  
# Restricted Materials of IBM 
#  
# COPYRIGHT International Business Machines Corp. 2000,2003 
# All Rights Reserved 
#  
# US Government Users Restricted Rights - Use, duplication or 
# disclosure restricted by GSA ADP Schedule Contract with IBM Corp. 
#  
# IBM_PROLOG_END_TAG 
# @(#)  7d4c34b 43haes/usr/sbin/cluster/events/site_down_complete.sh, 726, 2147A_aha726, Feb 05 2021 09:50 PM

#########################################################################
#
#   COMPONENT_NAME: EVENTS
#
#   FUNCTIONS: none
#
#########################################################################

#########################################################################
#                                                                       #
#       Name:           site_down_complete                              #
#                                                                       #
#       Description:    This event script is called after the site_down #
#                       script successfully completes.                  #
#                       The script checks the sitename, then calls one  #
#                       of the two sub-event scripts appropriately.     #
#                                                                       # 
#       Called by:      cluster manager                                 #
#                                                                       #
#       Calls to:       site_down_local_complete,                       #
#                       site_down_remote_complete                       #
#                                                                       #
#       Arguments:      sitename                                        #
#                                                                       #
#       Returns:        0       success                                 #
#                       1       failure                                 #
#                       2       bad argument                            #
#                                                                       #
#########################################################################

PROGNAME=${0##*/}
export PATH="$(/usr/es/sbin/cluster/utilities/cl_get_path all)"
if [[ $VERBOSE_LOGGING == high ]]
then
    set -x
    version='%I%'
fi

LOCAL_NODE=$(get_local_nodename)
set -a
eval $(cllsparam -n $LOCAL_NODE)
set +a

SITENAME=$1

STATUS=0

if [ ! -n "$EMULATE" ]
then
    EMULATE="REAL"
fi

set -u

if [ $# -lt 1 ]
then
  cl_echo 6600 "Usage: $PROGNAME sitename\n" $PROGNAME
  exit 2
fi

if [[ "$SITENAME" = "$LOCALSITENAME" ]] 
then
    clcallev site_down_local_complete
else
    clcallev site_down_remote_complete $SITENAME
fi

exit $STATUS
