Former-commit-id:4f112968dd
[formerly0ac8d01147
] [formerly660ca8fcec
] [formerly4f112968dd
[formerly0ac8d01147
] [formerly660ca8fcec
] [formerlybac07c65a1
[formerly660ca8fcec
[formerly 41ead90acf0d06e959e513e5a25869eb6e18150a]]]] Former-commit-id:bac07c65a1
Former-commit-id:a1b0b399a9
[formerly7c11dea797
] [formerly bede60a174f734fd8be3cff1da228268a9551c43 [formerlyec3e8b6411
]] Former-commit-id: 116850bed663cea0cef9ee792538f13f2a182c5b [formerly7c145f4fe9
] Former-commit-id:dc5522e6ab
31 lines
790 B
Bash
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
|