Summary: Antihak module for Apache Name: apache-mod_antihak Version: 0.3.1beta Release: 2 License: GPL Packager: glen Group: Networking/Daemons Group(de): Netzwerkwesen/Server Group(pl): Sieciowe/Serwery Source0: http://prdownloads.sourceforge.net/apantihak/mod_antihak-0.3.1-beta.tar.bz2 Patch0: mod_antihak-iptables.patch.bz2 Patch1: mod_antihak-am.patch BuildRequires: apache-devel Requires: apache >= 1.3.1 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) Requires: iptables sudo %define _libexecdir %{_libdir}/apache %define _htmldocdir /home/httpd/manual/mod %description mod_antihak is an Apache Module designed to eliminate the CodeRed and Nimda worm's network bandwidth consumption. We're working to make it as easy as writing a line of text to add more worms! :) %prep %setup -q -n mod_antihak-0.3.1-beta cd src %patch0 -p0 %patch1 -p0 %build cd src rm tools/missing libtoolize --copy --force aclocal autoconf automake -a -c %configure \ CC=gcc \ CFLAGS="${CFLAGS:-%optflags} -I/usr/include/mysql" \ APACHE_APXS=/usr/sbin/apxs \ --with-mysql make %install rm -rf $RPM_BUILD_ROOT install -d $RPM_BUILD_ROOT{%{_libexecdir},%{_htmldocdir}} cd src install mod_antihak/mod_antihak.so $RPM_BUILD_ROOT%{_libexecdir} gzip -9nf AUTHORS COPYING ChangeLog INSTALL NEWS TODO %post if [ `fgrep "http ALL= NOPASSWD: /sbin/iptables" /etc/sudoers | wc -l` = 0 ] then echo "http ALL= NOPASSWD: /sbin/iptables" >> /etc/sudoers fi %{_sbindir}/apxs -e -a -n antihak %{_libexecdir}/mod_antihak.so 1>&2 if [ -f /var/lock/subsys/httpd ]; then /etc/rc.d/init.d/httpd restart 1>&2 else echo "Run \"/etc/rc.d/init.d/httpd start\" to start apache http daemon." fi %preun if [ "$1" = "0" ]; then if [ `fgrep "http ALL= NOPASSWD: /sbin/iptables" /etc/sudoers | wc -l` != 0 ] then perl -pi -e "s|http ALL= NOPASSWD: /sbin/iptables\n||" /etc/sudoers fi %{_sbindir}/apxs -e -A -n antihak %{_libexecdir}/mod_antihak.so 1>&2 if [ -f /var/lock/subsys/httpd ]; then /etc/rc.d/init.d/httpd restart 1>&2 fi fi %clean rm -rf $RPM_BUILD_ROOT %files %defattr(644,root,root,755) %doc src/{AUTHORS,COPYING,ChangeLog,INSTALL,NEWS,TODO}.gz %attr(755,root,root) %{_libexecdir}/* %changelog * Wed Jan 09 2002 glen - added /etc/sudoers editing * Wed Jan 09 2002 glen - built PLD package, based on PLD apache-mod_fastcgi and mandrake's mod_antihack