d55870e
%define haproxy_user    haproxy
d55870e
%define haproxy_group   %{haproxy_user}
d55870e
%define haproxy_home    %{_localstatedir}/lib/haproxy
d55870e
%define haproxy_confdir %{_sysconfdir}/haproxy
d55870e
%define haproxy_datadir %{_datadir}/haproxy
d55870e
9aa1221
%global _hardened_build 1
9aa1221
d55870e
Name:           haproxy
20c99eb
Version:        1.7.1
c33b153
Release:        1%{?dist}
8cd8592
Summary:        HAProxy reverse proxy for high availability environments
d55870e
d55870e
Group:          System Environment/Daemons
2b2535f
License:        GPLv2+
d55870e
9ab2bb9
URL:            http://www.haproxy.org/
dcad1c9
Source0:        http://www.haproxy.org/download/1.6/src/haproxy-%{version}.tar.gz
8497ace
Source1:        %{name}.service
d55870e
Source2:        %{name}.cfg
d36291d
Source3:        %{name}.logrotate
dcad1c9
Source4:        %{name}.sysconfig
4c182ec
Source5:        halog.1
d55870e
8cd8592
Patch0:         halog-unused-variables.patch
9ab2bb9
Patch1:         iprange-return-type.patch
98262d9
45c57ba
BuildRequires:  lua-devel
8497ace
BuildRequires:  pcre-devel
0f83930
BuildRequires:  zlib-devel
0f83930
BuildRequires:  openssl-devel
8497ace
BuildRequires:  systemd-units
d55870e
8497ace
Requires(pre):      shadow-utils
4c57edc
Requires(post):     systemd
4c57edc
Requires(preun):    systemd
4c57edc
Requires(postun):   systemd
d55870e
d55870e
%description
8cd8592
HAProxy is a TCP/HTTP reverse proxy which is particularly suited for high
d55870e
availability environments. Indeed, it can:
8cd8592
 - route HTTP requests depending on statically assigned cookies
8cd8592
 - spread load among several servers while assuring server persistence
8cd8592
   through the use of HTTP cookies
8cd8592
 - switch to backup servers in the event a main one fails
8cd8592
 - accept connections to special ports dedicated to service monitoring
8cd8592
 - stop accepting connections without breaking existing ones
8cd8592
 - add, modify, and delete HTTP headers in both directions
8cd8592
 - block requests matching particular patterns
9ab2bb9
 - report detailed status to authenticated users from a URI
8cd8592
   intercepted from the application
d55870e
d55870e
%prep
d55870e
%setup -q
98262d9
%patch0 -p0
9ab2bb9
%patch1 -p0
d55870e
d55870e
%build
403798d
regparm_opts=
bb82085
%ifarch %ix86 x86_64
403798d
regparm_opts="USE_REGPARM=1"
76a2500
%endif
76a2500
45c57ba
%{__make} %{?_smp_mflags} CPU="generic" TARGET="linux2628" USE_OPENSSL=1 USE_PCRE=1 USE_ZLIB=1 USE_LUA=1 ${regparm_opts} ADDINC="%{optflags}" USE_LINUX_TPROXY=1 ADDLIB="%{__global_ldflags}"
f37db97
f37db97
pushd contrib/halog
8cd8592
%{__make} ${halog} OPTIMIZE="%{optflags}"
f37db97
popd
d55870e
3ef555a
pushd contrib/iprange
3ef555a
%{__make} iprange OPTIMIZE="%{optflags}"
3ef555a
popd
3ef555a
d55870e
%install
ca11f67
%{__make} install-bin DESTDIR=%{buildroot} PREFIX=%{_prefix} TARGET="linux2628"
8cd8592
%{__make} install-man DESTDIR=%{buildroot} PREFIX=%{_prefix}
76a2500
8497ace
%{__install} -p -D -m 0644 %{SOURCE1} %{buildroot}%{_unitdir}/%{name}.service
d55870e
%{__install} -p -D -m 0644 %{SOURCE2} %{buildroot}%{haproxy_confdir}/%{name}.cfg
d36291d
%{__install} -p -D -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
4c182ec
%{__install} -p -D -m 0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/%{name}
4c182ec
%{__install} -p -D -m 0644 %{SOURCE5} %{buildroot}%{_mandir}/man1/halog.1
d55870e
%{__install} -d -m 0755 %{buildroot}%{haproxy_home}
d55870e
%{__install} -d -m 0755 %{buildroot}%{haproxy_datadir}
f37db97
%{__install} -d -m 0755 %{buildroot}%{_bindir}
f37db97
%{__install} -p -m 0755 ./contrib/halog/halog %{buildroot}%{_bindir}/halog
3ef555a
%{__install} -p -m 0755 ./contrib/iprange/iprange %{buildroot}%{_bindir}/iprange
9ab2bb9
%{__install} -p -m 0644 ./examples/errorfiles/* %{buildroot}%{haproxy_datadir}
76a2500
d55870e
for httpfile in $(find ./examples/errorfiles/ -type f) 
d55870e
do
d55870e
    %{__install} -p -m 0644 $httpfile %{buildroot}%{haproxy_datadir}
d55870e
done
d55870e
9ab2bb9
%{__rm} -rf ./examples/errorfiles/
9ab2bb9
9ab2bb9
find ./examples/* -type f ! -name "*.cfg" -exec %{__rm} -f "{}" \;
9ab2bb9
d55870e
for textfile in $(find ./ -type f -name '*.txt')
d55870e
do
8cd8592
    %{__mv} $textfile $textfile.old
d55870e
    iconv --from-code ISO8859-1 --to-code UTF-8 --output $textfile $textfile.old
8cd8592
    %{__rm} -f $textfile.old
2cdc704
done
d55870e
d55870e
%pre
9ab2bb9
getent group %{haproxy_group} >/dev/null || \
9ab2bb9
    groupadd -r %{haproxy_group}
8497ace
getent passwd %{haproxy_user} >/dev/null || \
9ab2bb9
    useradd -r -g %{haproxy_user} -d %{haproxy_home} \
9ab2bb9
    -s /sbin/nologin -c "haproxy" %{haproxy_user}
8497ace
exit 0
d55870e
d55870e
%post
4c57edc
%systemd_post %{name}.service
d55870e
d55870e
%preun
4c57edc
%systemd_preun %{name}.service
8497ace
d55870e
%postun
4c57edc
%systemd_postun_with_restart %{name}.service
8497ace
d55870e
%files
8cd8592
%defattr(-,root,root,-)
9ab2bb9
%doc doc/* examples/*
9ab2bb9
%doc CHANGELOG LICENSE README ROADMAP VERSION
9ab2bb9
%dir %{haproxy_confdir}
d55870e
%dir %{haproxy_datadir}
6bfc809
%{haproxy_datadir}/*
d55870e
%config(noreplace) %{haproxy_confdir}/%{name}.cfg
d36291d
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
4c182ec
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
8497ace
%{_unitdir}/%{name}.service
d55870e
%{_sbindir}/%{name}
8cd8592
%{_sbindir}/%{name}-systemd-wrapper
f37db97
%{_bindir}/halog
3ef555a
%{_bindir}/iprange
8cd8592
%{_mandir}/man1/*
d55870e
%attr(-,%{haproxy_user},%{haproxy_group}) %dir %{haproxy_home}
d55870e
d55870e
%changelog
20c99eb
* Thu Dex 29 2016 Ryan O'Hara <rohara@redhat.com> - 1.7.1-1
20c99eb
- Update to 1.7.1
20c99eb
6888383
* Mon Nov 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.7.0-1
6888383
- Update to 1.7.0
6888383
7d4e398
* Mon Nov 21 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.10-1
7d4e398
- Update to 1.6.10 (#1397013)
7d4e398
c33b153
* Wed Aug 31 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.9-1
c33b153
- Update to 1.6.9 (#1370709)
c33b153
e2ada79
* Thu Jul 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.7-2
e2ada79
- Fix main frontend in default config file (#1348674)
e2ada79
ce7f102
* Thu Jul 14 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.7-1
ce7f102
- Update to 1.6.7 (#1356578)
ce7f102
dc1baa7
* Tue Jun 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.6-2
dc1baa7
- Remove patch for CVE-2016-5360
dc1baa7
71b783c
* Tue Jun 28 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.6-1
71b783c
- Update to 1.6.6 (#1350426)
71b783c
dcad1c9
* Wed Jun 15 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-3
dcad1c9
- Fix reqdeny causing random crashes (CVE-2016-5360, #1346672)
dcad1c9
9f2d883
* Fri Jun 03 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-2
9f2d883
- Utilize system-wide crypto-policies (#1256253)
9f2d883
fe4c32b
* Mon May 23 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.5-1
fe4c32b
- Update to 1.6.5 (#1317313)
fe4c32b
87e26fe
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.3-2
87e26fe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
87e26fe
e73c944
* Wed Jan 20 2016 Ryan O'Hara <rohara@redhat.com> - 1.6.3-1
e73c944
- Update to 1.6.3 (#1276288)
e73c944
45c57ba
* Wed Nov 18 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.2-3
45c57ba
- Enable Lua support
45c57ba
ca11f67
* Tue Nov 03 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.2-2
9626251
- Update to 1.6.2 (#1276288)
9626251
86a5d24
* Fri Oct 30 2015 Ryan O'Hara <rohara@redhat.com> - 1.6.1-1
86a5d24
- Update to 1.6.1 (#1276288)
86a5d24
e3738f3
* Mon Jul 06 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.14-1
e3738f3
- Update to 1.5.14 (CVE-2015-3281, #1239181)
e3738f3
017d18e
* Fri Jun 26 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.13-1
017d18e
- Update to 1.5.13 (#1236056)
017d18e
89560e5
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.12-3
89560e5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
89560e5
6e1a182
* Tue May 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.12-2
6e1a182
- Remove unused patches
6e1a182
b9b5bda
* Tue May 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.12-1
b9b5bda
- Update to 1.5.12 (#1217922)
b9b5bda
2829a4b
* Wed Mar 04 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-4
2829a4b
- Rework systemd service and sysconfig file
2829a4b
4c182ec
* Wed Feb 11 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-3
4c182ec
- Add sysconfig file
4c182ec
0d70219
* Tue Feb 10 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-2
0d70219
- Add tcp-ut bind option to set TCP_USER_TIMEOUT (#1190783)
0d70219
728e5a0
* Sun Feb 01 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.11-1
728e5a0
- Update to 1.5.11 (#1188029)
728e5a0
cd5b39a
* Mon Jan 05 2015 Ryan O'Hara <rohara@redhat.com> - 1.5.10-1
cd5b39a
- Update to 1.5.10
cd5b39a
cc4985c
* Mon Dec 01 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.9-1
cc4985c
- Update to 1.5.9
cc4985c
101b99a
* Sat Nov 01 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.8-1
101b99a
- Update to 1.5.8
101b99a
cc5e0dc
* Thu Oct 30 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.7-1
cc5e0dc
- Update to 1.5.7
cc5e0dc
9b19590
* Mon Oct 20 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.6-1
9b19590
- Update to 1.5.6
9b19590
9a72a06
* Wed Oct 08 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.5-1
9a72a06
- Update to 1.5.5
9a72a06
d3fc139
* Tue Sep 02 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.4-1
33aa4f2
- Update to 1.5.4
33aa4f2
dbecca6
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.3-3
dbecca6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
dbecca6
46e8428
* Wed Aug 06 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.3-2
46e8428
- Use haproxy-systemd-wrapper in service file (#1126955)
46e8428
6b82d1b
* Fri Jul 25 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.3-1
6b82d1b
- Update to 1.5.3
6b82d1b
9ab2bb9
* Tue Jul 15 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.2-1
9ab2bb9
- Update to 1.5.2
9ab2bb9
3ef555a
* Tue Jun 24 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.1-1
3ef555a
- Update to 1.5.1
3ef555a
0f83930
* Thu Jun 19 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.0-2
0f83930
- Build with zlib and openssl support
0f83930
8cd8592
* Thu Jun 19 2014 Ryan O'Hara <rohara@redhat.com> - 1.5.0-1
8cd8592
- Update to 1.5.0
8cd8592
0d4a7e3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.25-2
0d4a7e3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
0d4a7e3
98262d9
* Thu Mar 27 2014 Ryan O'Hara <rohara@redhat.com> - 1.4.25-1
98262d9
- Update to 1.4.25
98262d9
d474681
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.24-2
d474681
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d474681
5a0d4e6
* Mon Jun 17 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.24-1
5a0d4e6
- Update to 1.4.24 (CVE-2013-2174, #975160)
5a0d4e6
23dc5f2
* Tue Apr 30 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-3
23dc5f2
- Build with PIE flags (#955182)
23dc5f2
9aa1221
* Mon Apr 22 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-2
9aa1221
- Build with PIE flags (#955182)
9aa1221
02f83cc
* Tue Apr 02 2013 Ryan O'Hara <rohara@redhat.com> - 1.4.23-1
02f83cc
- Update to 1.4.23 (CVE-2013-1912, #947697)
02f83cc
- Drop supplementary groups after setuid/setgid (#894626)
02f83cc
bebb8c2
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.22-2
bebb8c2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
bebb8c2
2cdc704
* Fri Oct 12 2012 Robin Lee <cheeselee@fedoraproject.org> - 1.4.22-1
2cdc704
- Update to 1.4.22 (CVE-2012-2942, #824544)
2cdc704
- Use linux2628 build target
2cdc704
- No separate x86_64 build target for halog
2cdc704
- halog build honors rpmbuild optflags
2cdc704
- Specfile cleanup
2cdc704
4c57edc
* Mon Sep 17 2012 Václav Pavlín <vpavlin@redhat.com> - 1.4.20-3
4c57edc
- Scriptlets replaced with new systemd macros (#850143)
4c57edc
e367df6
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.20-2
e367df6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e367df6
fb8fe64
* Tue Apr 03 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.20-1
fb8fe64
- Update to 1.4.20
fb8fe64
cdd669d
* Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-4
cdd669d
- fix haproxy.services file
cdd669d
8497ace
* Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-3
8497ace
- Update to use systemd fixing bug #770305
8497ace
13c47d1
* Fri Feb 10 2012 Petr Pisar <ppisar@redhat.com> - 1.4.19-2
13c47d1
- Rebuild against PCRE 8.30
13c47d1
4d91ac5
* Sun Jan 29 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.19-1
4d91ac5
- Update to 1.4.19
4d91ac5
7714761
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.18-2
7714761
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
7714761
6bfc809
* Thu Sep 22 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.18-1
6bfc809
- Update to 1.4.18
6bfc809
13d35c0
* Tue Apr 26 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.15-1
13d35c0
- Update to 1.4.15
13d35c0
cd7a43e
* Sun Feb 27 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.11-1
cd7a43e
- update to 1.4.11
cd7a43e
171beae
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.8-2
171beae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
171beae
cd7a43e
* Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.9-1
cd7a43e
- update to 1.4.9
cd7a43e
d641a47
* Sun Jun 20 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.8-1
d641a47
- update to 1.4.8
d641a47
f37db97
* Sun May 30 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.4.6-1
f37db97
- update to 1.4.6
f37db97
6684241
* Thu Feb 18 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.23-1
6684241
- update to 1.3.23
6684241
d36291d
* Sat Oct 17 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.22-1
d36291d
- update to 1.3.22
d36291d
- added logrotate configuration
d36291d
66ade7e
* Mon Oct 12 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.21-1
66ade7e
- update to 1.3.21
66ade7e
3924ac2
* Sun Oct 11 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.20-1
3924ac2
- update to 1.3.20
3924ac2
3924ac2
* Sun Aug 02 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.19-1
0d0c512
- update to 1.3.19
0d0c512
6321f76
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.18-2
6321f76
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
6321f76
425fb6e
* Sun May 17 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.18-1
425fb6e
- update to 1.3.18
425fb6e
425fb6e
* Sat Apr 11 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.17-1
a8f7f24
-  Update to 1.3.17
a8f7f24
46d4846
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.15.7-2
46d4846
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
46d4846
c762fb7
* Tue Dec 30 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.7-1
c762fb7
- update to 1.3.15.7
c762fb7
- remove upstream patches, they are now part of source distribution
c762fb7
c0a4a74
* Sat Nov 22 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.6-2
c0a4a74
- apply upstream patches 
c0a4a74
76a2500
* Sat Nov 15 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.15.6-1
76a2500
- update to 1.3.15.6
76a2500
- use new build targets from upstream
76a2500
- add in recommended build options for x86 from upstream
76a2500
2b2535f
* Sat Jun 28 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.6-1
2b2535f
- update to 1.3.14.6
2b2535f
- remove gcc 4.3 patch, it has been applied upstream
2b2535f
- remove MIT license as that code has been removed from upstream
2b2535f
34e768c
* Mon Apr 14 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.4-1
34e768c
- update to 1.3.14.4
34e768c
234f4f2
* Sun Mar 16 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.3-1
234f4f2
- update to 1.3.14.3
234f4f2
905ef3e
* Sat Mar 01 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-4
905ef3e
- apply the gcc 4.3 patch to the build process
905ef3e
8ac8468
* Sat Mar 01 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-3
8ac8468
- fix gcc 4.3 bug [#434144]
8ac8468
- update init script to properly reload configuration
8ac8468
2cb4cfe
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.3.14.2-2
2cb4cfe
- Autorebuild for GCC 4.3
2cb4cfe
4b970c7
* Sun Jan 20 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14.2-1
4b970c7
- update to 1.3.14.2
4b970c7
- update make flags that changed with this upstream release
4b970c7
- added man page installation
4b970c7
fcacffd
* Sun Dec 16 2007 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.3.14-1
fcacffd
- update to 1.3.14
fcacffd
93ba44a
* Mon Nov 05 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.4-1
93ba44a
- update to 1.3.12.4
93ba44a
3037574
* Thu Nov 01 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.3-1
3037574
- update to 1.3.12.3
93ba44a
3037574
* Fri Sep 21 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-3
3037574
- fix init script 'reload' task
3037574
d55870e
* Thu Sep 20 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-2
d55870e
- update License field
d55870e
d55870e
* Thu Sep 20 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.2-1
d55870e
- update to 1.3.12.2
d55870e
- remove the upstream patch
d55870e
d55870e
* Tue Sep 18 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.3.12.1-1
d55870e
- switch to 1.3.12.1 branch
d55870e
- add patch from upstream with O'Reilly licensing updates.
d55870e
- convert ISO-8859-1 doc files to UTF-8
d55870e
d55870e
* Sat Mar 24 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.2.17-2
d55870e
- addition of haproxy user
d55870e
- add license information
d55870e
d55870e
* Fri Mar 23 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 1.2.17-1
d55870e
- initial packaging