diff options
author | root <root@rshg054.dnsready.net> | 2013-10-12 00:05:36 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-10-12 00:05:36 -0700 |
commit | 20bff71e3bf43ce7f3621da9cee37eb6ea3c14ad (patch) | |
tree | b334b815f671a193959abd9378c0859168f0080e /extra/postgresql/postgresql-check-db-dir | |
parent | c38c20f4261c973628038df011b526c6ad4e0489 (diff) |
Sat Oct 12 00:05:35 PDT 2013
Diffstat (limited to 'extra/postgresql/postgresql-check-db-dir')
-rwxr-xr-x | extra/postgresql/postgresql-check-db-dir | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/postgresql/postgresql-check-db-dir b/extra/postgresql/postgresql-check-db-dir index 542c82209..e563d114c 100755 --- a/extra/postgresql/postgresql-check-db-dir +++ b/extra/postgresql/postgresql-check-db-dir @@ -16,9 +16,9 @@ then fi # PGMAJORVERSION is major version -PGMAJORVERSION=9.2 +PGMAJORVERSION=9.3 # PREVMAJORVERSION is the previous major version, e.g., 8.4, for upgrades -PREVMAJORVERSION=9.1 +PREVMAJORVERSION=9.2 # Check for the PGDATA structure if [ -f "$PGDATA/PG_VERSION" ] && [ -d "$PGDATA/base" ] @@ -35,7 +35,7 @@ then else echo $"An old version of the database format was found." echo $"You need to dump and reload before using PostgreSQL $PGMAJORVERSION." - echo $"See http://www.postgresql.org/docs/9.2/static/upgrading.html" + echo $"See http://www.postgresql.org/docs/$PGMAJORVERSION/static/upgrading.html" exit 1 fi else |