diff options
author | Palle Girgensohn <girgen@FreeBSD.org> | 2007-01-09 16:29:35 +0000 |
---|---|---|
committer | Palle Girgensohn <girgen@FreeBSD.org> | 2007-01-09 16:29:35 +0000 |
commit | 6b11e898761ec7ced9bf9b652a24b78697eac863 (patch) | |
tree | b375d70b112b334c43c9daa281851082f36a60da /databases/postgresql82-server/files/postgresql.in | |
parent | Update to 2007.01.09. (diff) |
Update postgresql to 8.2.1, 8.1.6, 8.0.10, 7.4.15 and 7.3.17.
Release notes:
http://www.postgresql.org/docs/7.3/static/release.html#RELEASE-7-3-17
http://www.postgresql.org/docs/7.4/static/release.html#RELEASE-7-4-15
http://www.postgresql.org/docs/8.0/static/release.html#RELEASE-8-0-10
http://www.postgresql.org/docs/8.1/static/release.html#RELEASE-8-1-6
http://www.postgresql.org/docs/8.2/static/release-8-2-1.html
The server-side utilities of postgresql (initdb, initlocation,
ipcclean, pg_controldata, pg_ctl, pg_id and pg_resetxlog) are now
installed by the respective postgresql*-server port (previously they
where installed with the client). If you update the client, you should
also update the server to make sure you are not left without the
server-side tools. Do something like:
portupgrade postgresql-client postgresql-server
Notes
Notes:
svn path=/head/; revision=181869
Diffstat (limited to 'databases/postgresql82-server/files/postgresql.in')
-rw-r--r-- | databases/postgresql82-server/files/postgresql.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/postgresql82-server/files/postgresql.in b/databases/postgresql82-server/files/postgresql.in index a44c713d6b25..1b3b4226acdf 100644 --- a/databases/postgresql82-server/files/postgresql.in +++ b/databases/postgresql82-server/files/postgresql.in @@ -12,7 +12,7 @@ # # optional # postgresql_data="%%PREFIX%%/pgsql/data" # postgresql_flags="-w -s -m fast" -# postgresql_initdb_flags="--encoding=utf-8 --lc_collate=C" +# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C" # postgresql_class="default" # # See %%PREFIX%%/share/doc/postgresql/README-server for more info @@ -36,7 +36,7 @@ postgresql_flags=${postgresql_flags:-"-w -s -m fast"} postgresql_user=pgsql eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data"} postgresql_class=${postgresql_class:-"default"} -postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc_collate=C"} +postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} name=postgresql rcvar=`set_rcvar` @@ -58,7 +58,7 @@ postgresql_command() postgresql_initdb() { - su -l -c ${postgresql_class} ${postgresql_user} -c "exec ${prefix}/bin/initdb -D ${postgresql_data}" + su -l -c ${postgresql_class} ${postgresql_user} -c "exec ${prefix}/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}" } run_rc_command "$1" |