Skip to content

Commit 13830d9

Browse files
committed
tweaks
1 parent 54e0c74 commit 13830d9

5 files changed

Lines changed: 6 additions & 6 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

bin-linux/pgdiff.tgz

-4 Bytes
Binary file not shown.

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

1 Byte
Binary file not shown.

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)