I noticed that in your Alert Hosts
#
# ***********************************************************************************
# touch default.alrt files for each site to retrigger alerts each hour***************
# ***********************************************************************************
#
# ———————————————
# Everyday 8:00 AM until 9:00 PM
# ———————————————
#
#
00 08-21 * * * /bin/ksh -c ‘eval . ~/.profile.cron /quovadx/qdx5.2/integrator siteProto; $HCIROOT/mda_global/scripts/touch_default_alrt.ksh’
Here is the touch_default_alrt.ksh scripts
#!/usr/bin/ksh
# touch_default_alrt.ksh
# Touch default.alrt files in all key, non-batch prod sites.
# Touching this file re-triggers alerts.
# Presumably this will run from cron at some frequency,
# such as once an hour Monday through Friday, from 7 AM until 9 PM.
clear
# List all sites in prod,
# then step through them,
# changing to each Alerts directory,
# and touching the default.alrt file.
set -A key_sites_2 `list_sites.ksh`
for key_site in ${key_sites_2[*]}
do
cd /$HCIROOT/$key_site
cd Alerts
touch default.alrt
sleep 5
done
I see there is a sleep in the script and don’t know why so don’t ask, sorry.
Russ Ross
RussRoss318@gmail.com