awips2/deltaScripts/13.5.1/updateProviderTypeLocalization.sh
Dustin Johnson be06196084 Issue #2038 Fixes for 13.5.1 delta scripts
Former-commit-id: 4f112968dd [formerly 0ac8d01147] [formerly 660ca8fcec] [formerly 4f112968dd [formerly 0ac8d01147] [formerly 660ca8fcec] [formerly bac07c65a1 [formerly 660ca8fcec [formerly 41ead90acf0d06e959e513e5a25869eb6e18150a]]]]
Former-commit-id: bac07c65a1
Former-commit-id: a1b0b399a9 [formerly 7c11dea797] [formerly bede60a174f734fd8be3cff1da228268a9551c43 [formerly ec3e8b6411]]
Former-commit-id: 116850bed663cea0cef9ee792538f13f2a182c5b [formerly 7c145f4fe9]
Former-commit-id: dc5522e6ab
2013-06-11 13:13:48 -05:00

31 lines
790 B
Bash

#!/bin/bash
XSLT_SCRIPT="updateProviderType.xsl"
# ensure that the xslt script is present
if [ ! -f ${XSLT_SCRIPT} ]; then
echo "ERROR: the required xslt script - ${XSLT_SCRIPT} was not found."
echo "FATAL: the update has failed!"
exit 1
fi
echo "INFO: update started - updating ProviderType to be a class proper in localization files"
# Update subscription manager configuration files
for FILE in `find /awips2/edex/data/utility/common_static -iname \*-harvester.xml`
do
cp $FILE $FILE.bak
xsltproc ${XSLT_SCRIPT} ${FILE}.bak > ${FILE}
# Make sure each command succeeds
if [ $? -ne 0 ]; then
echo "FATAL: the update has failed!"
exit 1
fi
# Delete the md5 file
rm $FILE.md5
done
echo "INFO: the update has completed successfully!"
exit 0