diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-09-02 08:50:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-09-02 08:50:59 +0000 |
commit | 57e578123d816f78df19444e3ed9cb1a7dcec21e (patch) | |
tree | 31c6300ce52e39fea096867ea1cdeddf6aa07258 | |
parent | 975404b0b57444da4fcfac64a161fa5554b1ce9b (diff) | |
parent | ccba126c6130661e4ffdfa113b97dcf2512a3155 (diff) |
Merge "correct backup-db.sh in kibana repo to keep consistent with testapi"
-rw-r--r-- | utils/test/scripts/backup-db.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/utils/test/scripts/backup-db.sh b/utils/test/scripts/backup-db.sh index aa36aa370..35c3fbe5a 100644 --- a/utils/test/scripts/backup-db.sh +++ b/utils/test/scripts/backup-db.sh @@ -18,16 +18,16 @@ echo "Create Directory for backup" mkdir -p $TARGET_DIR echo "Export results" -mongoexport -db test_results_collection -c test_results --out $TARGET_DIR/results.json +mongoexport --db test_results_collection -c results --out $TARGET_DIR/backup-results.json echo "Export test cases" -mongoexport --db test_results_collection -c test_cases --out $TARGET_DIR/backup-cases.json +mongoexport --db test_results_collection -c testcases --out $TARGET_DIR/backup-cases.json echo "Export projects" -mongoexport --db test_results_collection -c test_projects --out $TARGET_DIR/backup-projects.json +mongoexport --db test_results_collection -c projects --out $TARGET_DIR/backup-projects.json echo "Export pods" -mongoexport --db test_results_collection -c pod --out $TARGET_DIR/backup-pod.json +mongoexport --db test_results_collection -c pods --out $TARGET_DIR/backup-pod.json echo "Create tar.gz" -tar -cvzf $TEST_RESULT_DB_BACKUP $TARGET_DIR +#tar -cvzf $TEST_RESULT_DB_BACKUP $TARGET_DIR echo "Delete temp directory" -rm -Rf $TARGET_DIR +#rm -Rf $TARGET_DIR |