Issue #2505 removed recco from deployment
added update script to drop recco from db Former-commit-id:e88bbe2aff
[formerly3204a2f7b5
] [formerly3551b731e0
] [formerly3551b731e0
[formerly95f1621d3e
]] [formerlye88bbe2aff
[formerly3204a2f7b5
] [formerly3551b731e0
] [formerly3551b731e0
[formerly95f1621d3e
]] [formerly8cbe2c06a8
[formerly3551b731e0
[formerly95f1621d3e
] [formerly8cbe2c06a8
[formerly f4e66b8afce682014a0fa1ef9585b7ee6480e1e1]]]]] Former-commit-id:8cbe2c06a8
Former-commit-id:27ebb8e6bb
[formerlyb5b94646cf
] [formerlyd2f0b73626
] [formerly e25afb71a09ec42d78796d89ab5d9f1b601d1805 [formerly 3b2b0c50ce7169049fcf9a2ade66e9157fc2cf81] [formerlyd2f0b73626
[formerly49c8bd5ee9
]]] Former-commit-id: 7426be3e79f4d28179f5977aace075f5e8538851 [formerly 7384c5efc3b7d3bed603cfe7ab8ff291ceab0e23] [formerly09101ca5ac
[formerlyd94f44d406
]] Former-commit-id:09101ca5ac
Former-commit-id:bdf611db27
This commit is contained in:
parent
9b9644a728
commit
59637dcd61
2 changed files with 12 additions and 8 deletions
11
deltaScripts/14.2.1/dropRecco.sh
Normal file
11
deltaScripts/14.2.1/dropRecco.sh
Normal file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/bash
|
||||
# DR #2505 Disable deployment of recco plugin
|
||||
|
||||
PSQL="/awips2/psql/bin/psql"
|
||||
|
||||
SQL_COMMAND="
|
||||
delete from plugin_info where name = 'recco';
|
||||
drop table if exists recco;
|
||||
drop sequence if exists reccoseq;
|
||||
"
|
||||
${PSQL} -U awips -d metadata -c "${SQL_COMMAND}"
|
|
@ -206,13 +206,6 @@
|
|||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="com.raytheon.edex.plugin.recco"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="0.0.0"
|
||||
unpack="false"/>
|
||||
|
||||
<plugin
|
||||
id="com.raytheon.edex.plugin.redbook"
|
||||
download-size="0"
|
||||
|
|
Loading…
Add table
Reference in a new issue