Revision 10585
Added by Aaron Marcuse-Kubitza over 11 years ago
bin/after_import | ||
---|---|---|
1 |
#!/bin/bash |
|
2 |
# Perform post-normalized-import actions |
|
3 |
# usage: self [wait_for_pids...] |
|
4 |
|
|
5 |
cd "$(dirname -- "${BASH_SOURCE[0]}")/.." |
|
6 |
|
|
7 |
set -x |
|
8 |
|
|
9 |
bin/waitpid "$@" |
|
10 |
|
|
11 |
bin/make_analytical_db |
|
12 |
|
|
13 |
make backups/TNRS.backup-remake & |
|
14 |
dump_opts=${dump_opts---exclude-schema=public} \ |
|
15 |
make backups/vegbien.$version.backup/test & |
|
16 |
wait # wait for asynchronous commands |
|
0 | 17 |
Also available in: Unified diff
added bin/after_import, which performs post-normalized-import actions separately from bin/import_all