Skip to content

Commit c1cb915

Browse files
committed
tweaks
Former-commit-id: 13830d9
1 parent 8f54010 commit c1cb915

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

bin-linux/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ These instructions will guide you through the process of generating SQL, reviewi
55
1. download pgdiff.tgz to your machine
66
1. untar pgdiff.tgz (a new directory will be created: called pgdiff)
77
1. cd into the new pgdiff directory
8-
1. optionally edit pgdiff.sh to change the db access values... or set them at runtime (i.e. USER1=joe NAME1=mydb USER2=joe NAME2=myotherdb pgdiff.sh)
8+
1. optionally edit pgdiff.sh to change the db access values... or set them at runtime (i.e. USER1=joe NAME1=mydb USER2=joe NAME2=myotherdb ./pgdiff.sh)
99
1. run pgdiff.sh
1010

1111
## tar contents
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bc4346731208e5b88b3fbbbaf027dfc557471e8c
1+
a43bac9815b274229ca929f86bedc43fdd4454a1

bin-osx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ These instructions will guide you through the process of generating SQL, reviewi
55
1. download pgdiff.tgz to your machine
66
1. untar pgdiff.tgz (a new directory will be created: called pgdiff)
77
1. cd into the new pgdiff directory
8-
1. optionally edit pgdiff.sh to change the db access values... or set them at runtime (i.e. USER1=joe NAME1=mydb USER2=joe NAME2=myotherdb pgdiff.sh)
8+
1. optionally edit pgdiff.sh to change the db access values... or set them at runtime (i.e. USER1=joe NAME1=mydb USER2=joe NAME2=myotherdb ./pgdiff.sh)
99
1. run pgdiff.sh
1010

1111
## tar contents

bin-osx/pgdiff.tgz.REMOVED.git-id

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
cb71ed6dbe48377ffce0cd089954f7014d23aaf1
1+
7ed89cdc6de9635e5c3d39e341153dbc949d56a3

pgdiff.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
# pgdiff -U postgres -W supersecret -D maindb -O sslmode=disable -u postgres -w supersecret -d stagingdb -o sslmode=disable COLUMN
99
#
1010

11-
[[ -z $USER1 ]] && USER1=c42
11+
[[ -z $USER1 ]] && USER1=admin
1212
[[ -z $HOST1 ]] && HOST1=localhost
13-
[[ -z $NAME1 ]] && NAME1=cp
13+
[[ -z $NAME1 ]] && NAME1=prd-db
1414
[[ -z $OPT1 ]] && OPT1='sslmode=disable'
1515

16-
[[ -z $USER2 ]] && USER2=c42
16+
[[ -z $USER2 ]] && USER2=admin
1717
[[ -z $HOST2 ]] && HOST2=localhost
18-
[[ -z $NAME2 ]] && NAME2=cp-pentest
18+
[[ -z $NAME2 ]] && NAME2=qa-db
1919
[[ -z $OPT2 ]] && OPT2='sslmode=disable'
2020

2121
echo "This is the reference database:"

0 commit comments

Comments
 (0)