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
30 lines
569 B
Bash
Executable file
30 lines
569 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PSQL="/awips2/psql/bin/psql"
|
|
|
|
if [ ! -f ${PSQL} ]; then
|
|
echo "ERROR: The PSQL executable does not exist - ${PSQL}."
|
|
echo "FATAL: Update Failed!"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "Press Enter to perform the updates Ctrl-C to quit."
|
|
read done
|
|
|
|
echo "Removing grid data in database"
|
|
${PSQL} -d metadata -U awips -c "truncate table grib, grib_models, gridcoverage"
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "FATAL: Update Failed!"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "Removing grid hdf5 data"
|
|
rm -rf /awips2/edex/data/hdf5/grib
|
|
|
|
echo ""
|
|
echo "INFO: The update was successfully applied."
|
|
|
|
exit 0
|