Compare commits

...

21 commits

Author SHA1 Message Date
Devrim GÜNDÜZ
4d1831cdb5 - Update patch #1: Fix build failure caused by new default patch fuzz = 0
policy in rawhide
2008-08-12 05:34:21 +00:00
Devrim GÜNDÜZ
2aa87bd532 - Update to 2.1 Gold
- Set group of sample config files to root, not apache. Fixes RH #442372.
2008-08-12 05:06:59 +00:00
Jesse Keating
a71a044f44 Initialize branch F-9 for postgresql-pgpool-II 2008-04-21 15:15:56 +00:00
Devrim GÜNDÜZ
456b6478e6 - Fix Requires: issue, per #442021 (Alex Lancaster) 2008-04-11 18:25:54 +00:00
Devrim GÜNDÜZ
7d95072969 - Honor /etc/sysconfig/pgpool settings. Previously we could never customize
PGPOOLPID=/var/run/pgpool.pid et al.
- Remaining hardcoded paths replaced by customizable variables such as
    $PGPOOLCONF .
2008-04-09 06:36:47 +00:00
Devrim GÜNDÜZ
61c7e326b8 Copy-paste is evil. 2008-04-06 17:11:29 +00:00
Devrim GÜNDÜZ
bc3e16458a Fix spec 2008-04-06 16:54:53 +00:00
Devrim GÜNDÜZ
ddb35e6b79 Update sources 2008-04-06 16:53:04 +00:00
Devrim GÜNDÜZ
c4f9f72b99 Update to 2.1 beta2
Remove unneeded patch.
2008-04-06 16:37:31 +00:00
Jesse Keating
f1baa5de3a - Autorebuild for GCC 4.3 2008-02-19 01:27:41 +00:00
Devrim GÜNDÜZ
9d0361507a - Rebuilt against PostgreSQL 8.3 2008-01-22 03:59:48 +00:00
Devrim GÜNDÜZ
f31a475d7f Fix Requires of -devel package, per bz#429436 2008-01-20 00:56:54 +00:00
Devrim GÜNDÜZ
8c0576ee57 Update to 2.0.1 Add a temp patch that will disappear in 2.0.2 2008-01-14 08:24:24 +00:00
Devrim GÜNDÜZ
40cc65d1c5 Update to 2.0.1 release 2008-01-05 20:59:45 +00:00
Devrim GÜNDÜZ
a4b33c1351 Update pgpool-II to 1.3 2007-10-23 06:47:13 +00:00
Devrim GÜNDÜZ
d50b58fec0 Update pgpool-II to 1.2.1 2007-10-06 00:25:06 +00:00
Devrim GÜNDÜZ
4bd934db13 Update spec file per latest changes. 2007-08-16 09:44:57 +00:00
Devrim GÜNDÜZ
5e3f3b14af - Fixed the directory name where sample conf files and sql files are
installed.
2007-08-16 08:41:21 +00:00
Devrim GÜNDÜZ
af44953420 Bump up version 2007-08-05 03:03:11 +00:00
Devrim GÜNDÜZ
89362e82c3 - Added a patch for sample conf file to use Fedora defaults 2007-08-05 02:58:47 +00:00
Devrim GÜNDÜZ
1fb8191790 Patch for sample conf file 2007-08-05 02:52:20 +00:00
6 changed files with 106 additions and 18 deletions

View file

@ -1 +1 @@
pgpool-II-1.2.tar.gz pgpool-II-2.1.tar.gz

1
branch Normal file
View file

@ -0,0 +1 @@
F-9

33
pgpool.conf.sample.patch Normal file
View file

@ -0,0 +1,33 @@
--- pgpool.conf.sample.old 2008-08-12 08:26:07.000000000 +0300
+++ pgpool.conf.sample 2008-08-12 08:27:31.000000000 +0300
@@ -12,16 +12,14 @@
# Port number for pgpool communication manager
pcp_port = 9898
-# Unix domain socket path. (The Debian package defaults to
-# /var/run/postgresql.)
-socket_dir = '/tmp'
+# Unix domain socket path.
+socket_dir = '/var/run'
# Unix domain socket path for pgpool communication manager.
-# (Debian package defaults to /var/run/postgresql)
-pcp_socket_dir = '/tmp'
+pcp_socket_dir = '/var/run'
-# Unix domain socket path for the backend. Debian package defaults to /var/run/postgresql!
-backend_socket_dir = '/tmp'
+# Unix domain socket path for the backend.
+backend_socket_dir = '/var/run'
# pgpool communication manager timeout. 0 means no timeout, but strongly not recommended!
pcp_timeout = 10
@@ -54,7 +52,7 @@
authentication_timeout = 60
# Logging directory
-logdir = '/tmp'
+logdir = '/var/run'
# Replication mode
replication_mode = false

View file

@ -8,11 +8,12 @@
# #
# v1.0.0 Devrim GUNDUZ <devrim@CommandPrompt.com> # v1.0.0 Devrim GUNDUZ <devrim@CommandPrompt.com>
# - Initial version of Red Hat / Fedora init script # - Initial version of Red Hat / Fedora init script
# v1.0.1 Devrim GUNDUZ <devrim@CommandPrompt.com>
if [ -r /etc/sysconfig/pgpool ]; then # - - Honor /etc/sysconfig/pgpool settings. Previously we could never
. /etc/sysconfig/pgpool # customize PGPOOLPID=/var/run/pgpool.pid et al.
fi # - Remaining hardcoded paths replaced by customizable variables
# such as $PGPOOLCONF .
# Source function library. # Source function library.
INITD=/etc/rc.d/init.d INITD=/etc/rc.d/init.d
. $INITD/functions . $INITD/functions
@ -37,16 +38,21 @@ PGPOOLCONF=/etc/pgpool.conf
PGPOOLPID=/var/run/pgpool.pid PGPOOLPID=/var/run/pgpool.pid
PGPOOLLOG=/var/log/pgpool.log PGPOOLLOG=/var/log/pgpool.log
# read in the site custom setup
if [ -r /etc/sysconfig/pgpool ]; then
. /etc/sysconfig/pgpool
fi
test -x $PGPOOLDAEMON || exit 5 test -x $PGPOOLDAEMON || exit 5
# Create the log file if it does not exist # Create the pgpool.log log file if it does not exist
if [ ! -r $PGPOOLLOG ] if [ ! -r $PGPOOLLOG ]
then then
touch $PGPOOLLOG touch $PGPOOLLOG
fi fi
# Check whether the config file exists or not # Check whether the pgpool.conf config file exists or not
if [ ! -r /etc/pgpool.conf ] if [ ! -r "$PGPOOLCONF" ]
then then
echo "$PGPOOLCONF not found" echo "$PGPOOLCONF not found"
RETVAL=1 RETVAL=1
@ -82,7 +88,7 @@ stop(){
RETVAL=1 RETVAL=1
failure failure
else else
killproc /usr/bin/pgpool killproc $PGPOOLDAEMON
RETVAL=$? RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/${NAME} [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/${NAME}
fi; fi;

View file

@ -2,14 +2,15 @@
Summary: Pgpool is a connection pooling/replication server for PostgreSQL Summary: Pgpool is a connection pooling/replication server for PostgreSQL
Name: postgresql-%{short_name} Name: postgresql-%{short_name}
Version: 1.2 Version: 2.1
Release: 2%{?dist} Release: 1%{?dist}
License: BSD License: BSD
Group: Applications/Databases Group: Applications/Databases
URL: http://pgpool.projects.PostgreSQL.org/pgpool-II/en URL: http://pgpool.projects.PostgreSQL.org/pgpool-II/en
Source0: http://pgfoundry.org/frs/download.php/1419/%{short_name}-%{version}.tar.gz Source0: http://pgfoundry.org/frs/download.php/1843/%{short_name}-%{version}.tar.gz
Source1: pgpool.init Source1: pgpool.init
Source2: pgpool.sysconfig Source2: pgpool.sysconfig
Patch1: pgpool.conf.sample.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: postgresql-devel pam-devel BuildRequires: postgresql-devel pam-devel
@ -36,13 +37,14 @@ DB nodes to be connected, which was not possible in pgpool-I.
%package devel %package devel
Summary: The development files for pgpool-II Summary: The development files for pgpool-II
Group: Development/Libraries Group: Development/Libraries
Requires: %{name} = %{version} Requires: %{name} = %{version}-%{release}
%description devel %description devel
Development headers and libraries for pgpool-II. Development headers and libraries for pgpool-II.
%prep %prep
%setup -q -n %{short_name}-%{version} %setup -q -n %{short_name}-%{version}
%patch1 -p0
%build %build
%configure --with-pgsql-includedir=%{_includedir}/pgsql --with-pgsql-lib=%{_libdir}/pgsql --disable-static --with-pam --disable-rpath %configure --with-pgsql-includedir=%{_includedir}/pgsql --with-pgsql-lib=%{_libdir}/pgsql --disable-static --with-pam --disable-rpath
@ -52,11 +54,12 @@ make %{?_smp_flags}
%install %install
rm -rf %{buildroot} rm -rf %{buildroot}
make %{?_smp_flags} DESTDIR=%{buildroot} install make %{?_smp_flags} DESTDIR=%{buildroot} install
install -d %{buildroot}%{_datadir}/%{short_name}
mv %{buildroot}/%{_sysconfdir}/*.conf.sample %{buildroot}%{_datadir}/%{short_name} mv %{buildroot}/%{_sysconfdir}/*.conf.sample %{buildroot}%{_datadir}/%{short_name}
install -d %{buildroot}%{_initrddir} install -d %{buildroot}%{_initrddir}
install -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/pgpool install -m 755 %{SOURCE1} %{buildroot}%{_initrddir}/pgpool
install -d %{buildroot}%{_sysconfdir}/sysconfig install -d %{buildroot}%{_sysconfdir}/sysconfig
install -m 755 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/pgpool install -m 644 %{SOURCE2} %{buildroot}%{_sysconfdir}/sysconfig/pgpool
# nuke libtool archive and static lib # nuke libtool archive and static lib
rm -f %{buildroot}%{_libdir}/libpcp.{a,la} rm -f %{buildroot}%{_libdir}/libpcp.{a,la}
@ -64,7 +67,10 @@ rm -f %{buildroot}%{_libdir}/libpcp.{a,la}
%clean %clean
rm -rf %{buildroot} rm -rf %{buildroot}
%post -p /sbin/ldconfig %post
/sbin/ldconfig
chkconfig --add pgpool
%postun -p /sbin/ldconfig %postun -p /sbin/ldconfig
%files %files
@ -77,13 +83,14 @@ rm -rf %{buildroot}
%{_bindir}/pcp_node_info %{_bindir}/pcp_node_info
%{_bindir}/pcp_proc_count %{_bindir}/pcp_proc_count
%{_bindir}/pcp_proc_info %{_bindir}/pcp_proc_info
%{_bindir}/pcp_recovery_node
%{_bindir}/pcp_stop_pgpool %{_bindir}/pcp_stop_pgpool
%{_bindir}/pcp_systemdb_info %{_bindir}/pcp_systemdb_info
%{_bindir}/pg_md5 %{_bindir}/pg_md5
%{_mandir}/man8/pgpool* %{_mandir}/man8/pgpool*
%{_datadir}/%{short_name}/system_db.sql %{_datadir}/%{short_name}/system_db.sql
%{_libdir}/libpcp.so.* %{_libdir}/libpcp.so.*
%attr(764,root,apache) %{_datadir}/%{short_name}/*.conf.sample %attr(764,root,root) %{_datadir}/%{short_name}/*.conf.sample
%{_datadir}/%{short_name}/pgpool.pam %{_datadir}/%{short_name}/pgpool.pam
%{_initrddir}/pgpool %{_initrddir}/pgpool
%config(noreplace) %{_sysconfdir}/sysconfig/pgpool %config(noreplace) %{_sysconfdir}/sysconfig/pgpool
@ -95,6 +102,47 @@ rm -rf %{buildroot}
%{_libdir}/libpcp.so %{_libdir}/libpcp.so
%changelog %changelog
* Tue Aug 12 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.1-1
- Update to 2.1 Gold
- Set group of sample config files to root, not apache. Fixes RH #442372.
- Update patch #1
* Fri Apr 11 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.1-0.2.beta2
- Fix Requires: issue, per #442021 (Alex Lancaster)
* Sun Apr 6 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.1-beta2
- Update to 2.1 beta2
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.1-3.1
- Autorebuild for GCC 4.3
* Mon Jan 21 2008 Devrim GUNDUZ <devrim@commandprompt.com> 2.0.1-2.1
- Rebuilt against PostgreSQL 8.3
* Sat Jan 19 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.0.1-2
- Fix Requires of -devel package, per bz#429436
* Sun Jan 13 2008 Devrim Gunduz <devrim@CommandPrompt.com> 2.0.1-1
- Update to 2.0.1
- Add a temp patch that will disappear in 2.0.2
* Tue Oct 23 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.3-1
- Update to 1.3
* Fri Oct 5 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2.1-1
- Update to 1.2.1
* Wed Aug 29 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2-5
- Chmod sysconfig/pgpool to 644, not 755. Per BZ review.
- Run chkconfig --add pgpool during %%post.
* Thu Aug 16 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2-4
- Fixed the directory name where sample conf files and sql files
are installed.
* Sun Aug 5 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2-3
- Added a patch for sample conf file to use Fedora defaults
* Sun Aug 5 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2-2 * Sun Aug 5 2007 Devrim Gunduz <devrim@CommandPrompt.com> 1.2-2
- Added an init script for pgpool - Added an init script for pgpool
- Added /etc/sysconfig/pgpool - Added /etc/sysconfig/pgpool

View file

@ -1 +1 @@
8fed94ed12769dacbbf8758b2154e5a7 pgpool-II-1.2.tar.gz cf02f9358f46849bd526798868e13162 pgpool-II-2.1.tar.gz