05e71a
%undefine _ld_as_needed
05e71a
05e71a
Name:			ebtables
05e71a
Version:		2.0.11
Michel Alexandre Salim 033011
Release:		9%{?dist}.1
05e71a
Summary:		Ethernet Bridge frame table administration tool
05e71a
License:		GPLv2+
05e71a
URL:			http://ebtables.sourceforge.net/
05e71a
05e71a
Source0:		ftp://ftp.netfilter.org/pub/ebtables/ebtables-%{version}.tar.bz2
05e71a
Source1:		ebtables-legacy-save
05e71a
Source2:		ebtables-helper
05e71a
Source3:		ebtables.service
05e71a
Source4:		ebtables-config
05e71a
05e71a
BuildRequires:		autoconf
05e71a
BuildRequires:		automake
05e71a
BuildRequires:		libtool
05e71a
BuildRequires:		gcc
05e71a
BuildRequires:		systemd
05e71a
BuildRequires: make
05e71a
05e71a
%description
05e71a
Ethernet bridge tables is a firewalling tool to transparently filter network
05e71a
traffic passing a bridge. The filtering possibilities are limited to link
05e71a
layer filtering and some basic filtering on higher network layers.
05e71a
05e71a
This tool is the userspace control for the bridge and ebtables kernel
05e71a
components (built by default in Fedora kernels).
05e71a
05e71a
The ebtables tool can be used together with the other Linux filtering tools,
05e71a
like iptables. There are no known incompatibility issues.
05e71a
05e71a
%package legacy
05e71a
Summary: Legacy user space tool to configure bridge netfilter rules in kernel
05e71a
Requires(post):   %{_sbindir}/update-alternatives
05e71a
Requires(post):   %{_bindir}/readlink
05e71a
Requires(postun): %{_sbindir}/update-alternatives
05e71a
Conflicts:        setup < 2.10.4-1
05e71a
%if 0%{?rhel} >= 9
05e71a
# RHEL-9 provides ebtables via iptables-nft, but doesn't support ebtables
05e71a
# alternatives. As such avoid the Provides here so iptables-nft is chosen, not
05e71a
# ebtables-legacy.
05e71a
%else
05e71a
Provides:         ebtables
05e71a
%endif
05e71a
05e71a
%description legacy
05e71a
Ethernet bridge tables is a firewalling tool to transparently filter network
05e71a
traffic passing a bridge. The filtering possibilities are limited to link
05e71a
layer filtering and some basic filtering on higher network layers.
05e71a
05e71a
This tool is the userspace control for the bridge and ebtables kernel
05e71a
components (built by default in Fedora kernels).
05e71a
05e71a
The ebtables tool can be used together with the other Linux filtering tools,
05e71a
like iptables. There are no known incompatibility issues.
05e71a
05e71a
Note that it is considered legacy upstream since nftables provides the same
05e71a
functionality in a much newer code-base. To aid in migration, there is
05e71a
ebtables-nft utility, a drop-in replacement for the legacy one which uses
05e71a
nftables internally. It is provided by iptables-nft package.
05e71a
05e71a
%package services
05e71a
Summary: ebtables systemd services
05e71a
%{?systemd_ordering}
05e71a
Obsoletes:	ebtables-compat < 2.0.10-39
05e71a
05e71a
%description services
05e71a
ebtables systemd services
05e71a
05e71a
This package provides the systemd ebtables service that has been split
05e71a
out of the base package for better integration with alternatives.
05e71a
05e71a
%prep
05e71a
%autosetup -p1 -n ebtables-%{version}
05e71a
# Convert to UTF-8
05e71a
f=THANKS; iconv -f iso-8859-1 -t utf-8 $f -o $f.utf8 ; mv $f.utf8 $f
05e71a
05e71a
%build
05e71a
./autogen.sh
05e71a
%configure --disable-silent-rules LOCKFILE=/run/ebtables.lock
05e71a
%make_build
05e71a
05e71a
%install
05e71a
%make_install
05e71a
install -D -m 644 %{SOURCE3} %{buildroot}%{_unitdir}/ebtables.service
05e71a
install -D -m 755 %{SOURCE2} %{buildroot}%{_libexecdir}/ebtables-helper
05e71a
install -D -m 600 %{SOURCE4} %{buildroot}%{_sysconfdir}/sysconfig/ebtables-config
05e71a
touch %{buildroot}%{_sysconfdir}/sysconfig/ebtables
05e71a
05e71a
# install ebtables-legacy-save bash script
05e71a
install -m 755 %{SOURCE1} %{buildroot}%{_sbindir}/ebtables-legacy-save
05e71a
05e71a
# No use for libtool archive files
05e71a
rm %{buildroot}/%{_libdir}/libebtc.la
05e71a
05e71a
# Remove /etc/ethertypes (now part of setup)
05e71a
rm -f %{buildroot}%{_sysconfdir}/ethertypes
05e71a
05e71a
# Drop these binaries (for now at least)
05e71a
rm %{buildroot}/%{_sbindir}/ebtables{d,u}
05e71a
05e71a
# Prepare for Alternatives system
05e71a
touch %{buildroot}%{_sbindir}/ebtables
05e71a
touch %{buildroot}%{_sbindir}/ebtables-save
05e71a
touch %{buildroot}%{_sbindir}/ebtables-restore
05e71a
touch %{buildroot}%{_mandir}/man8/ebtables.8
05e71a
05e71a
%post legacy
05e71a
pfx=%{_sbindir}/ebtables
05e71a
manpfx=%{_mandir}/man8/ebtables
05e71a
for sfx in "" "-restore" "-save"; do
05e71a
	if [ "$(readlink -e $pfx$sfx)" == $pfx$sfx ]; then
05e71a
		rm -f $pfx$sfx
05e71a
	fi
05e71a
done
05e71a
if [ "$(readlink -e $manpfx.8.gz)" == $manpfx.8.gz ]; then
05e71a
	rm -f $manpfx.8.gz
05e71a
fi
05e71a
%{_sbindir}/update-alternatives --install \
05e71a
	$pfx ebtables $pfx-legacy 10 \
05e71a
	--slave $pfx-save ebtables-save $pfx-legacy-save \
05e71a
	--slave $pfx-restore ebtables-restore $pfx-legacy-restore \
05e71a
	--slave $manpfx.8.gz ebtables-man $manpfx-legacy.8.gz
05e71a
05e71a
%postun legacy
05e71a
if [ $1 -eq 0 ]; then
05e71a
	%{_sbindir}/update-alternatives --remove \
05e71a
		ebtables %{_sbindir}/ebtables-legacy
05e71a
fi
05e71a
05e71a
# When upgrading ebtables to ebtables-{legacy,services},
05e71a
# postun in ebtables thinks it is uninstalled and removes alternatives.
05e71a
# Counter this with a trigger here to have it installed again.
05e71a
%triggerpostun legacy -- ebtables
05e71a
pfx=%{_sbindir}/ebtables
05e71a
manpfx=%{_mandir}/man8/ebtables
05e71a
%{_sbindir}/update-alternatives --install \
05e71a
	$pfx ebtables $pfx-legacy 10 \
05e71a
	--slave $pfx-save ebtables-save $pfx-legacy-save \
05e71a
	--slave $pfx-restore ebtables-restore $pfx-legacy-restore \
05e71a
	--slave $manpfx.8.gz ebtables-man $manpfx-legacy.8.gz
05e71a
05e71a
05e71a
%post services
05e71a
%systemd_post ebtables.service
05e71a
05e71a
%preun services
05e71a
%systemd_preun ebtables.service
05e71a
05e71a
%postun services
05e71a
%systemd_postun ebtables.service
05e71a
05e71a
%files legacy
05e71a
%license COPYING
05e71a
%doc ChangeLog THANKS
05e71a
%{_sbindir}/ebtables-legacy*
05e71a
%{_mandir}/*/ebtables-legacy*
05e71a
%{_libdir}/libebtc.so*
05e71a
%ghost %{_sbindir}/ebtables
05e71a
%ghost %{_sbindir}/ebtables-save
05e71a
%ghost %{_sbindir}/ebtables-restore
05e71a
%ghost %{_mandir}/man8/ebtables.8.gz
05e71a
05e71a
%files services
05e71a
%{_unitdir}/ebtables.service
05e71a
%{_libexecdir}/ebtables-helper
05e71a
%config(noreplace) %{_sysconfdir}/sysconfig/ebtables-config
05e71a
%ghost %{_sysconfdir}/sysconfig/ebtables
05e71a
05e71a
%changelog
Michel Alexandre Salim 033011
* Wed Mar 01 2023 Michel Alexandre Salim <salimma@centosproject.org> - 2.0.11-9.1
Michel Alexandre Salim 033011
- Rebuild to fix vendor tag
Michel Alexandre Salim 033011
05e71a
* Tue Jan 26 2021 Eric Garver <egarver@redhat.com> - 2.0.11-9
05e71a
- avoid Provides: ebtables for newer RHEL/ELN builds
05e71a
05e71a
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.11-8
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
05e71a
05e71a
* Thu Nov  5 2020 Florian Weimer <fweimer@redhat.com> - 2.0.11-7
05e71a
- Remove build dependency on autogen
05e71a
05e71a
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.11-6
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
05e71a
05e71a
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.11-5
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
05e71a
05e71a
* Wed Jan 22 2020 Tom Callaway <spot@fedoraproject.org> - 2.0.11-4
05e71a
- add Requires(post): %%{_bindir}/readlink (bz1792805)
05e71a
05e71a
* Mon Dec 16 2019 Phil Sutter <psutter@redhat.com> - 2.0.11-3
05e71a
- Fix nft-variant reference in package description
05e71a
05e71a
* Mon Dec 16 2019 Phil Sutter <psutter@redhat.com> - 2.0.11-2
05e71a
- Eliminate implicit dependency on initscripts package
05e71a
05e71a
* Mon Dec  2 2019 Tom Callaway <spot@fedoraproject.org> - 2.0.11-1
05e71a
- update to 2.0.11 (all of Phil's awesome patches merged)
05e71a
05e71a
* Wed Oct 30 2019 Phil Sutter <psutter@redhat.com> - 2.0.10-39
05e71a
- Make services sub-package obsolete compat to fix upgrade path
05e71a
05e71a
* Tue Oct 22 2019 Phil Sutter <psutter@redhat.com> - 2.0.10-38
05e71a
- Drop compat sub-package again
05e71a
05e71a
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-37
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
05e71a
05e71a
* Wed Jun 26 2019 Phil Sutter <psutter@redhat.com> - 2.0.10-36
05e71a
- Fix segfault with non-existing lock directory
05e71a
05e71a
* Wed Apr 24 2019 Phil Sutter <psutter@redhat.com> - 2.0.10-35
05e71a
- Workaround missing broute table support in ebtables-nft
05e71a
05e71a
* Tue Apr 09 2019 Phil Sutter <psutter@redhat.com> - 2.0.10-34
05e71a
- Fix lockfile location
05e71a
05e71a
* Thu Apr 04 2019 Phil Sutter <psutter@redhat.com> - 2.0.10-33
05e71a
- Fix date in previous changelog entry
05e71a
- Use systemd_ordering macro
05e71a
05e71a
* Thu Apr 04 2019 Phil Sutter <psutter@redhat.com> - 2.0.10-32
05e71a
- Add upstream changes since last release
05e71a
- Rename package to ebtables-legacy
05e71a
- Split systemd service into services sub-package
05e71a
- Rewrite systemd unit helper script for compatibility with ebtables-nft
05e71a
- Drop module unloading on service stop, this causes more harm than good
05e71a
- Remove save format settings, they are not effective anymore
05e71a
- Remove save on restart setting, restart is merely stop && start
05e71a
- Complete integration into alternatives
05e71a
- Remove needless ldconfig calls
05e71a
05e71a
* Thu Feb  7 2019 Tom Callaway <spot@fedoraproject.org> - 2.0.10-31
05e71a
- build without as-needed everywhere (stop using Ubuntu patch)
05e71a
  Resolves BZ:1672683
05e71a
05e71a
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-30
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
05e71a
05e71a
* Mon Jan 21 2019 David Abdurachmanov <david.abdurachmanov@gmail.com> 2.0.10-29
05e71a
- Disable --as-needed to resolve segfaults
05e71a
05e71a
* Sun Jul 22 2018 Peter Robinson <pbrobinson@fedoraproject.org> 2.0.10-28
05e71a
- Add gcc dep, spec cleanups
05e71a
05e71a
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-27
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
05e71a
05e71a
* Tue Jul 10 2018 Phil Sutter <psutter@redhat.com> - 2.0.10-26
05e71a
- Replace calls to ldconfig with newly introduced macro.
05e71a
- Install binaries in /usr/sbin instead of /sbin.
05e71a
- Make use of Alternatives system.
05e71a
05e71a
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-25
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
05e71a
05e71a
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-24
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
05e71a
05e71a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-23
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
05e71a
05e71a
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-22
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
05e71a
05e71a
* Fri Jul 22 2016 Thomas Woerner <twoerner@redhat.com> - 2.0.10-21
05e71a
- /etc/ethertypes has been moved into the setup package for F-25+.
05e71a
  (RHBZ#1329256)
05e71a
05e71a
* Mon May  9 2016 Thomas Woerner <twoerner@redhat.com> - 2.0.10-20
05e71a
- add upstream --noflush option patch for ebtables-restore
05e71a
05e71a
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.10-19
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
05e71a
05e71a
* Mon Jan 18 2016 Tom Callaway <spot@fedoraproject.org> - 2.0.10-18
05e71a
- Move lock file to /run/ebtables.lock (bz 1290327)
05e71a
05e71a
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-17
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
05e71a
05e71a
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-16
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
05e71a
05e71a
* Tue Jun 24 2014 Tom Callaway <spot@fedoraproject.org> - 2.0.10-15
05e71a
- create and own /var/lib/ebtables (bz 1093361)
05e71a
05e71a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-14
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
05e71a
05e71a
* Mon Mar 31 2014 Tom Callaway <spot@fedoraproject.org> - 2.0.10-13
05e71a
- use standard optflags and ldflags (bz 1071993)
05e71a
05e71a
* Wed Feb 19 2014 Tom Callaway <spot@fedoraproject.org> - 2.0.10-12
05e71a
- remove executable bit from systemd service file
05e71a
- add RARP type to ethertypes (bz 1060537)
05e71a
05e71a
* Wed Aug 21 2013 Tom Callaway <spot@fedoraproject.org> - 2.0.10-11
05e71a
- convert to systemd
05e71a
05e71a
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-9
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
05e71a
05e71a
* Thu Mar 21 2013 Tom Callaway <spot@fedoraproject.org> - 2.0.10-8
05e71a
- add audit module
05e71a
05e71a
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-7
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
05e71a
05e71a
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-6
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
05e71a
05e71a
* Thu Apr  5 2012 Tom Callaway <spot@fedoraproject.org> - 2.0.10-5
05e71a
- update to 2.0.10-4 (upstream numbering is goofy)
05e71a
- fix missing symbol issue with extension modules (bz810006)
05e71a
05e71a
* Thu Feb 16 2012 Thomas Woerner <twoerner@redhat.com> - 2.0.10-4
05e71a
- replaced ebtables-save perl script by bash script to get rid of the perl 
05e71a
  requirement
05e71a
05e71a
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-3
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
05e71a
05e71a
* Thu Aug 11 2011 Tom Callaway <spot@fedoraproject.org> - 2.0.10-2
05e71a
- update to 2.0.10-2
05e71a
05e71a
* Mon Jul 11 2011 Tom Callaway <spot@fedoraproject.org> - 2.0.10-1
05e71a
- update to 2.0.10-1
05e71a
05e71a
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.9-6
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
05e71a
05e71a
* Mon Feb 15 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.9-5
05e71a
- update to 2.0.9-2
05e71a
05e71a
* Fri Jan 29 2010 Thomas Woerner <twoerner@redhat.com> - 2.0.9-4
05e71a
- moved ebtables modules to /lib[64]/ebtables (rhbz#558886)
05e71a
05e71a
* Fri Jan 15 2010 Thomas Woerner <twoerner@redhat.com> - 2.0.9-3
05e71a
- fixed init script to be lsb conform (rhbz#536828)
05e71a
- fixed download link according to package review
05e71a
05e71a
* Wed Aug 19 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.9-2
05e71a
- fix source0 url
05e71a
05e71a
* Mon Jul 27 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 2.0.9-1
05e71a
- update to 2.0.9
05e71a
05e71a
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.8-7
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
05e71a
05e71a
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.8-6
05e71a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
05e71a
05e71a
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.8-5
05e71a
- Autorebuild for GCC 4.3
05e71a
05e71a
* Sun Oct 28 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-4
05e71a
- bump to 2.0.8-2 from upstream
05e71a
- keep _libdir/ebtables, even though upstream just moved away from it.
05e71a
05e71a
* Thu Aug 23 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-3
05e71a
- use _libdir/ebtables to match upstream RPATH (bugzilla 248865)
05e71a
- correct license tag
05e71a
- use upstream init script
05e71a
- enable build-id
05e71a
- use cflags for all compiles
05e71a
- be sane with DESTDIR
05e71a
05e71a
* Mon Jul  9 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-2
05e71a
- remove "Fedora Core" reference in spec
05e71a
05e71a
* Mon Jul  2 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-1
05e71a
- final 2.0.8 release
05e71a
05e71a
* Wed Jan 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.8.rc3
05e71a
- fix release order
05e71a
05e71a
* Wed Jan 17 2007 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.1.rc3
05e71a
- bump to rc3
05e71a
05e71a
* Thu Oct 05 2006 Christian Iseli <Christian.Iseli@licr.org> 2.0.8-0.7.rc2
05e71a
 - rebuilt for unwind info generation, broken in gcc-4.1.1-21
05e71a
05e71a
* Mon Sep 18 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.6.rc2
05e71a
- fix versioning
05e71a
05e71a
* Thu Sep 14 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.3.rc2
05e71a
- fix bugzilla 206257
05e71a
05e71a
* Tue Sep 12 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.2.rc2
05e71a
- fix for FC-6
05e71a
05e71a
* Mon Apr 24 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.1.rc2
05e71a
- bump to rc2
05e71a
05e71a
* Sun Apr  2 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.5.rc1
05e71a
- learn to use "install" correctly. :/
05e71a
05e71a
* Sun Apr  2 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.4.rc1
05e71a
- package up the shared libs too
05e71a
05e71a
* Wed Mar 29 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.3.rc1
05e71a
- use -fPIC
05e71a
05e71a
* Wed Mar 29 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.2.rc1
05e71a
- broken tagging
05e71a
05e71a
* Tue Jan 10 2006 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.8-0.1.rc1
05e71a
- bump to 2.0.8-rc1
05e71a
05e71a
* Mon Jul  4 2005 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.6-7
05e71a
- buildsystem error requires artificial release bump
05e71a
05e71a
* Mon Jul  4 2005 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.6-6
05e71a
- actually touch ghosted files
05e71a
05e71a
* Fri Jul  1 2005 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.6-5
05e71a
- fix sysv file
05e71a
05e71a
* Fri Jul  1 2005 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.6-4
05e71a
- remove INSTALL file
05e71a
- add some text to description, correct typos
05e71a
- fix %%postun
05e71a
- add PreReqs
05e71a
- add %%ghost config files
05e71a
05e71a
* Tue May 31 2005 Tom "spot" Callaway <tcallawa@redhat.com> 2.0.6-3
05e71a
- reworked for Fedora Extras
05e71a
- add gcc4 fix
05e71a
- move init file into SOURCE1
05e71a
05e71a
* Thu Dec 02 2004 Dag Wieers <dag@wieers.com> - 2.0.6-2
05e71a
- Added patch for gcc 3.4. (Nigel Smith)
05e71a
05e71a
* Tue Apr 27 2004 Dag Wieers <dag@wieers.com> - 2.0.6-2
05e71a
- Cosmetic changes.
05e71a
05e71a
* Tue Apr 27 2004 Dag Wieers <dag@wieers.com> - 2.0.6-1
05e71a
- Initial package. (using DAR)