postgresql-setup: typos
Version: 9.3.2-7
This commit is contained in:
parent
a43ac073bc
commit
6d2de0b6b6
@ -8,16 +8,16 @@ test x"$PGSETUP_DEBUG" != x && set -x
|
|||||||
# Note: the specfile inserts the correct value during package build
|
# Note: the specfile inserts the correct value during package build
|
||||||
PGVERSION=xxxx
|
PGVERSION=xxxx
|
||||||
|
|
||||||
|
# PGMAJORVERSION is the major version, e.g. 9.0
|
||||||
|
PGMAJORVERSION=xxxx
|
||||||
|
|
||||||
# PGENGINE is the directory containing the postmaster executable
|
# PGENGINE is the directory containing the postmaster executable
|
||||||
# Note: the specfile inserts the correct value during package build
|
|
||||||
PGENGINE=xxxx
|
PGENGINE=xxxx
|
||||||
|
|
||||||
# PREVMAJORVERSION is the previous major version, e.g., 8.4, for upgrades
|
# PREVMAJORVERSION is the previous major version, e.g., 8.4, for upgrades
|
||||||
# Note: the specfile inserts the correct value during package build
|
|
||||||
PREVMAJORVERSION=xxxx
|
PREVMAJORVERSION=xxxx
|
||||||
|
|
||||||
# PREVPGENGINE is the directory containing the previous postmaster executable
|
# PREVPGENGINE is the directory containing the previous postmaster executable
|
||||||
# Note: the specfile inserts the correct value during package build
|
|
||||||
PREVPGENGINE=xxxx
|
PREVPGENGINE=xxxx
|
||||||
|
|
||||||
# Absorb configuration settings from the specified systemd service file,
|
# Absorb configuration settings from the specified systemd service file,
|
||||||
@ -44,8 +44,9 @@ Available operation mode:
|
|||||||
initdb Create a new PostgreSQL database cluster. This is usually the
|
initdb Create a new PostgreSQL database cluster. This is usually the
|
||||||
first action you perform after PostgreSQL server installation.
|
first action you perform after PostgreSQL server installation.
|
||||||
upgrade Upgrade PostgreSQL database cluster to be usable with new
|
upgrade Upgrade PostgreSQL database cluster to be usable with new
|
||||||
server. Use this if upgraded to newer PostgreSQL major version,
|
server. Use this if you upgraded your PostgreSQL server to
|
||||||
e.g. from 9.1 to 9.2.
|
newer major version (currently from $PREVMAJORVERSION \
|
||||||
|
to $PGMAJORVERSION).
|
||||||
|
|
||||||
Environment:
|
Environment:
|
||||||
PGSETUP_INITDB_OPTIONS Options carried by this variable are passed to
|
PGSETUP_INITDB_OPTIONS Options carried by this variable are passed to
|
||||||
@ -236,7 +237,7 @@ upgrade(){
|
|||||||
if [ $script_result -eq 0 ]; then
|
if [ $script_result -eq 0 ]; then
|
||||||
echo $"OK"
|
echo $"OK"
|
||||||
echo
|
echo
|
||||||
echo $"The configuration files was replaced by default configuration."
|
echo $"The configuration files were replaced by default configuration."
|
||||||
echo $"The previous configuration and data are stored in folder"
|
echo $"The previous configuration and data are stored in folder"
|
||||||
echo $PGDATAOLD.
|
echo $PGDATAOLD.
|
||||||
else
|
else
|
||||||
|
@ -64,7 +64,7 @@ Summary: PostgreSQL client programs
|
|||||||
Name: postgresql
|
Name: postgresql
|
||||||
%global majorversion 9.3
|
%global majorversion 9.3
|
||||||
Version: 9.3.2
|
Version: 9.3.2
|
||||||
Release: 6%{?dist}
|
Release: 7%{?dist}
|
||||||
|
|
||||||
# The PostgreSQL license is very similar to other MIT licenses, but the OSI
|
# The PostgreSQL license is very similar to other MIT licenses, but the OSI
|
||||||
# recognizes it as an independent license, so we do as well.
|
# recognizes it as an independent license, so we do as well.
|
||||||
@ -361,6 +361,7 @@ find . -type f -name .gitignore | xargs rm
|
|||||||
|
|
||||||
# prep the setup script, including insertion of some values it needs
|
# prep the setup script, including insertion of some values it needs
|
||||||
sed -e 's|^PGVERSION=.*$|PGVERSION=%{version}|' \
|
sed -e 's|^PGVERSION=.*$|PGVERSION=%{version}|' \
|
||||||
|
-e 's|^PGMAJORVERSION=.*$|PGMAJORVERSION=%{majorversion}|' \
|
||||||
-e 's|^PGENGINE=.*$|PGENGINE=%{_bindir}|' \
|
-e 's|^PGENGINE=.*$|PGENGINE=%{_bindir}|' \
|
||||||
-e 's|^PREVMAJORVERSION=.*$|PREVMAJORVERSION=%{prevmajorversion}|' \
|
-e 's|^PREVMAJORVERSION=.*$|PREVMAJORVERSION=%{prevmajorversion}|' \
|
||||||
-e 's|^PREVPGENGINE=.*$|PREVPGENGINE=%{_libdir}/pgsql/postgresql-%{prevmajorversion}/bin|' \
|
-e 's|^PREVPGENGINE=.*$|PREVPGENGINE=%{_libdir}/pgsql/postgresql-%{prevmajorversion}/bin|' \
|
||||||
@ -1130,6 +1131,9 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jan 23 2014 Pavel Raiskup <praiskup@redhat.com> - 9.3.2-7
|
||||||
|
- postgresql-setup: typos
|
||||||
|
|
||||||
* Tue Jan 21 2014 Pavel Raiskup <praiskup@redhat.com> - 9.3.2-6
|
* Tue Jan 21 2014 Pavel Raiskup <praiskup@redhat.com> - 9.3.2-6
|
||||||
- add PGSETUP_PGUPGRADE_OPTIONS env var for postgresql-setup
|
- add PGSETUP_PGUPGRADE_OPTIONS env var for postgresql-setup
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user