Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit 5276d32

Browse files
author
Lev Lozhkin
committed
postgres-9.6: s/9.5/9.6/
1 parent 6bafbd2 commit 5276d32

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

files/brews/postgresql.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def caveats; <<-EOS.undent
109109
To migrate existing data from a previous major version (pre-9.0) of PostgreSQL, see:
110110
https://www.postgresql.org/docs/9.6/static/upgrading.html
111111
112-
To migrate existing data from a previous minor version (9.0-9.5) of PostgreSQL, see:
112+
To migrate existing data from a previous minor version (9.0-9.6) of PostgreSQL, see:
113113
https://www.postgresql.org/docs/9.6/static/pgupgrade.html
114114
115115
You will need your previous PostgreSQL installation from brew to perform `pg_upgrade`.
@@ -151,4 +151,4 @@ def plist; <<-EOS.undent
151151
assert_equal "#{HOMEBREW_PREFIX}/lib", shell_output("#{bin}/pg_config --libdir").chomp
152152
assert_equal "#{HOMEBREW_PREFIX}/lib/postgresql", shell_output("#{bin}/pg_config --pkglibdir").chomp
153153
end
154-
end
154+
end

spec/classes/postgresql__config_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
it do
77
should contain_class('boxen::config')
88

9-
%w(data/postgresql-9.5 log/postgresql-9.5).each do |d|
9+
%w(data/postgresql-9.6 log/postgresql-9.6).each do |d|
1010
should contain_file("/test/boxen/#{d}").with_ensure(:directory)
1111
end
1212

spec/classes/postgresql__service_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
it do
77
should contain_service("com.boxen.postgresql").with_ensure(:stopped)
88

9-
should contain_exec("init-postgresql-db").with_creates("/test/boxen/data/postgresql-9.5/PG_VERSION")
9+
should contain_exec("init-postgresql-db").with_creates("/test/boxen/data/postgresql-9.6/PG_VERSION")
1010
should contain_service("dev.postgresql").with_ensure(:running)
1111
should contain_exec("wait-for-postgresql").with_unless("nc -z 127.0.0.1 15432")
1212
end

0 commit comments

Comments
 (0)