summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-10-30 23:42:44 +0000
committervarac <varacanero@zeromail.org>2013-10-30 23:42:44 +0000
commit2a145d0f6d8721d6c79fe95cf79a684757388640 (patch)
tree2801e232472e7a4bbbb4b9438fb179ed15203cf0
parentf23ca5d8fa1b164da3b466eb588c1dc6e3d3db63 (diff)
removed old debugging comments
-rwxr-xr-xcouchdb_delete_all_dbs.sh1
-rwxr-xr-xcouchdb_listall.sh1
-rwxr-xr-xcouchdb_recreate_dbs.sh1
-rwxr-xr-xcouchdb_restoreall.sh3
4 files changed, 1 insertions, 5 deletions
diff --git a/couchdb_delete_all_dbs.sh b/couchdb_delete_all_dbs.sh
index 6a9a7b5..7736b31 100755
--- a/couchdb_delete_all_dbs.sh
+++ b/couchdb_delete_all_dbs.sh
@@ -5,7 +5,6 @@
dbs="`get_dbs $URL`"
-#dbs='tickets' # for debugging
for db in $dbs
do
diff --git a/couchdb_listall.sh b/couchdb_listall.sh
index 699e345..0af7259 100755
--- a/couchdb_listall.sh
+++ b/couchdb_listall.sh
@@ -5,7 +5,6 @@
dbs="`get_dbs $URL`"
-#dbs='tickets' # for debugging
for db in $dbs
do
diff --git a/couchdb_recreate_dbs.sh b/couchdb_recreate_dbs.sh
index 5e572d1..48651fe 100755
--- a/couchdb_recreate_dbs.sh
+++ b/couchdb_recreate_dbs.sh
@@ -19,7 +19,6 @@
dbs="`get_dbs $URL`"
-#dbs='users_replicated' # for debugging
# concurrent replication might cause stalled tasks, see #https://leap.se/code/issues/3506
for db in $dbs
diff --git a/couchdb_restoreall.sh b/couchdb_restoreall.sh
index 4bc6719..37bdccf 100755
--- a/couchdb_restoreall.sh
+++ b/couchdb_restoreall.sh
@@ -8,9 +8,8 @@
. couchdb_functions
dbs="`get_dbs $URL`"
-#dbs='users_replicated' # for debugging
for db in $dbs
do
- restore_db ${URL} $db $user $pw
+ restore_db ${URL} $db $couchdb_user $couchdb_pw
done