Former-commit-id:46a94c88cd
[formerly09f41a6b31
] [formerly56745c942e
] [formerly46a94c88cd
[formerly09f41a6b31
] [formerly56745c942e
] [formerlyc8e373c098
[formerly56745c942e
[formerly 469c2c597b80fd725f474e0d645656e4054fd69a]]]] Former-commit-id:c8e373c098
Former-commit-id:d25ceb8da7
[formerlya526600e3e
] [formerly d5d0bc708d2a84d887a8b1401a4d596af0a188e3 [formerlye1721cad00
]] Former-commit-id: e5bdfc9c23d1ad9869b9fa62e5f577d39c450737 [formerly18b4d133c7
] Former-commit-id:55708f1d55
39 lines
1.4 KiB
Bash
39 lines
1.4 KiB
Bash
#!/bin/bash
|
|
# This script will remove the existing monitoringArea files from
|
|
# fog, safeseas, and snow site directories.
|
|
#
|
|
# This update needs to be performed with build 12.6.1.
|
|
#
|
|
|
|
echo ""
|
|
echo "Press Enter to perform the updates Ctrl-C to quit."
|
|
read done
|
|
|
|
if [ -d /awips2/edex/data/utility/common_static/site ]; then
|
|
cd /awips2/edex/data/utility/common_static/site
|
|
if [ $? -ne 0 ]; then
|
|
echo "FATAL: Site directories do not exist!"
|
|
exit 1
|
|
fi
|
|
for site in `ls -1d *`;
|
|
do
|
|
for comp in fog safeseas snow
|
|
do
|
|
echo "INFO: Removing files from /awips2/edex/data/utility/common_static/site/$site/$comp/monitoringArea"
|
|
if [ -d /awips2/edex/data/utility/common_static/site/${site}/${comp}/monitoringArea ]; then
|
|
cd /awips2/edex/data/utility/common_static/site/${site}/${comp}/monitoringArea
|
|
if [ $? -ne 0 ]; then
|
|
echo "FATAL: Could not change directory to site/$site/$comp/monitoringArea directory"
|
|
else
|
|
rm /awips2/edex/data/utility/common_static/site/${site}/${comp}/monitoringArea/*
|
|
if [ $? -ne 0 ]; then
|
|
echo "FATAL: Could not remove files from /awips2/edex/data/utility/common_static/site/$site/$comp/monitoringArea"
|
|
fi
|
|
fi
|
|
fi
|
|
done
|
|
done
|
|
echo "INFO: This update was successful."
|
|
fi
|
|
|
|
exit 0
|