4 lines
232 B
Bash
Executable file
4 lines
232 B
Bash
Executable file
#!/usr/bin/bash
|
|
# This script removes obsolete ISC Write Lock records from the cluster_task table
|
|
#
|
|
/awips2/psql/bin/psql -U awips -d metadata -c "delete from cluster_task where name = 'ISC Write Lock' and details not like '%:%';"
|