2007-01-16 00:29:34 +01:00
|
|
|
#
|
2008-08-22 01:50:28 +02:00
|
|
|
# spec file for package pen (Version 0.18.0)
|
2007-01-16 00:29:34 +01:00
|
|
|
#
|
2008-08-22 01:50:28 +02:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-16 00:29:34 +01:00
|
|
|
#
|
2008-08-22 01:50:28 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-01-16 00:29:34 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2008-08-22 01:50:28 +02:00
|
|
|
|
2007-01-16 00:29:34 +01:00
|
|
|
Name: pen
|
2011-12-06 18:36:59 +01:00
|
|
|
License: GPL-2.0+
|
2007-01-16 00:29:34 +01:00
|
|
|
Group: Productivity/Clustering/HA
|
|
|
|
Summary: A simple load balancer for tcp based protocols
|
2007-11-09 22:50:00 +01:00
|
|
|
Url: http://siag.nu/pen/
|
2008-08-22 01:50:28 +02:00
|
|
|
Version: 0.18.0
|
2007-11-09 22:50:00 +01:00
|
|
|
Release: 1
|
2007-01-16 00:29:34 +01:00
|
|
|
Source0: %{name}-%{version}.tar.bz2
|
|
|
|
Source1: %{name}.cfg
|
|
|
|
Source2: init.%{name}
|
|
|
|
Source3: runpen.sh
|
2007-11-09 22:50:00 +01:00
|
|
|
PreReq: %insserv_prereq %fillup_prereq
|
2007-01-16 00:29:34 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
Pen is a load balancer for "simple" tcp based protocols such as http or
|
|
|
|
smtp. It allows several servers to appear as one to the outside and
|
|
|
|
automatically detects servers that are down and distributes clients
|
|
|
|
among the available servers. This gives high availability and scalable
|
|
|
|
performance.
|
|
|
|
|
|
|
|
The load balancing algorithm keeps track of clients and will try to
|
|
|
|
send them back to the server they visited the last time. This is useful
|
|
|
|
for applications that maintain state between connections in the server,
|
|
|
|
including most modern web applications.
|
|
|
|
|
|
|
|
When pen detects that a server is unavailable, it scans for another
|
|
|
|
starting with the server after the most recently used one. That way we
|
|
|
|
get load balancing and "fair" failover for free.
|
|
|
|
|
|
|
|
Correctly configured, pen can ensure that a server farm is always
|
|
|
|
available, even when individual servers are brought down for
|
|
|
|
maintenance or reconfiguration.
|
|
|
|
|
|
|
|
The final single point of failure, pen itself, can be eliminated by
|
|
|
|
running pen on several servers, using vrrp to decide which is active.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Ulric Eriksson <ulric@siag.nu>
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
#%patch
|
|
|
|
|
|
|
|
%build
|
2007-11-09 22:50:00 +01:00
|
|
|
%configure \
|
2007-01-16 00:29:34 +01:00
|
|
|
--with-daemon
|
2007-11-09 22:50:00 +01:00
|
|
|
make %{?jobs:-j%jobs}
|
2007-01-16 00:29:34 +01:00
|
|
|
|
|
|
|
%install
|
2007-11-09 22:50:00 +01:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%_sbindir
|
|
|
|
#make DESTDIR="$RPM_BUILD_ROOT" install
|
|
|
|
%makeinstall
|
2007-01-16 00:29:34 +01:00
|
|
|
# Install pen init script
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/etc/init.d
|
|
|
|
install -m 0744 %SOURCE2 $RPM_BUILD_ROOT/etc/init.d/%{name}
|
|
|
|
install -m 0744 %SOURCE3 $RPM_BUILD_ROOT/usr/bin/runpen.sh
|
|
|
|
install -m 0644 %SOURCE1 $RPM_BUILD_ROOT/etc/%{name}.cfg
|
|
|
|
ln -sf ../../etc/init.d/%{name} $RPM_BUILD_ROOT/usr/sbin/rc%{name}
|
|
|
|
mkdir -p ${RPM_BUILD_ROOT}%{_docdir}
|
|
|
|
mv $RPM_BUILD_ROOT/usr/doc/pen ${RPM_BUILD_ROOT}%{_docdir}
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf ${RPM_BUILD_ROOT}
|
|
|
|
|
|
|
|
%post
|
|
|
|
%{fillup_and_insserv -n pen pen}
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%restart_on_update %{name}
|
|
|
|
%insserv_cleanup
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%stop_on_removal %{name}
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_docdir}/*
|
|
|
|
%{_mandir}/man1/*.1.gz
|
|
|
|
/etc/init.d/%{name}
|
|
|
|
/usr/bin/%{name}
|
|
|
|
/usr/bin/runpen.sh
|
|
|
|
/usr/bin/mergelogs
|
|
|
|
/usr/bin/penctl
|
|
|
|
/usr/bin/penlog
|
|
|
|
/usr/bin/penlogd
|
|
|
|
/usr/sbin/rc%{name}
|
|
|
|
%config(noreplace) /etc/%{name}.cfg
|
2008-08-22 01:50:28 +02:00
|
|
|
|
2007-06-21 22:48:06 +02:00
|
|
|
%changelog
|
2008-08-22 01:50:28 +02:00
|
|
|
* Tue Aug 19 2008 joe@suse.de
|
|
|
|
- update to version 0.18.0
|
|
|
|
- fixed issues with penctl.cgi
|
|
|
|
- new priority based server selection algorithm
|
|
|
|
* Fri Nov 09 2007 joe@suse.de
|
2007-11-09 22:50:00 +01:00
|
|
|
- update to version 0.17.2
|
2008-08-22 01:50:28 +02:00
|
|
|
* Fri Nov 09 2007 lrupp@suse.de
|
2007-11-09 22:50:00 +01:00
|
|
|
- fix rpmlint warnings
|
2008-08-22 01:50:28 +02:00
|
|
|
* Thu Jun 21 2007 adrian@suse.de
|
2007-06-21 22:48:06 +02:00
|
|
|
- fix changelog entry order
|
2008-08-22 01:50:28 +02:00
|
|
|
* Fri Aug 25 2006 joe@suse.de
|
2007-01-16 00:29:34 +01:00
|
|
|
- update to version 0.17.1
|
|
|
|
- bugfix: server_by_weight would never consider blacklisted
|
|
|
|
servers, which kept them blacklisted indefinitely
|
2008-08-22 01:50:28 +02:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2007-01-16 00:29:34 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-08-22 01:50:28 +02:00
|
|
|
* Fri Dec 16 2005 joe@suse.de
|
2007-01-16 00:29:34 +01:00
|
|
|
- fixed the init script give feedback on restart action
|
|
|
|
- upgraded to version 0.16.0
|
|
|
|
- the configure option for ssl is now:
|
2007-06-21 22:48:06 +02:00
|
|
|
--with-experimental-only-ssl
|
2007-01-16 00:29:34 +01:00
|
|
|
- new "abuse server", similar to the emergency server:
|
|
|
|
use "-B host:port" to enable
|
2008-08-22 01:50:28 +02:00
|
|
|
* Wed Jun 09 2004 joe@suse.de
|
2007-01-16 00:29:34 +01:00
|
|
|
- Initial version of SUSE pen package
|
2008-08-22 01:50:28 +02:00
|
|
|
* Sat Jan 24 2004 joe@suse.de
|
2007-01-16 00:29:34 +01:00
|
|
|
- upgraded to version 0.15.0
|