Author: glen                         Date: Mon Mar 13 23:14:39 2006 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- use %service

---- Files affected:
SPECS:
   samba.spec (1.321 -> 1.322) , sendmail.spec (1.171 -> 1.172) , 
shaperd.2.spec (1.29 -> 1.30) , smartmontools.spec (1.27 -> 1.28) , 
smartsuite.spec (1.14 -> 1.15) , smokeping.spec (1.36 -> 1.37) , smstools.spec 
(1.40 -> 1.41) , snort.spec (1.127 -> 1.128) , stunnel.spec (1.93 -> 1.94) , 
swapd.spec (1.25 -> 1.26) , sysklogd.spec (1.115 -> 1.116) , sysstat.spec (1.63 
-> 1.64) , tac_plus.spec (1.9 -> 1.10) , thttpd.spec (1.57 -> 1.58) , 
tpop3d.spec (1.70 -> 1.71) , ulogd.spec (1.34 -> 1.35) , vixie-cron.spec (1.115 
-> 1.116) , vsftpd.spec (1.46 -> 1.47) , vtun.spec (1.65 -> 1.66) , 
wanpipe.spec (1.27 -> 1.28) , watchdog.spec (1.26 -> 1.27) , wccpd.spec (1.19 
-> 1.20) , whoson.spec (1.64 -> 1.65) , wwwoffle.spec (1.86 -> 1.87) , 
ypbind-mt.spec (1.48 -> 1.49) , zebra-xs26.spec (1.22 -> 1.23) , zebra.spec 
(1.107 -> 1.108) , zmailer.spec (1.81 -> 1.82) 

---- Diffs:

================================================================
Index: SPECS/samba.spec
diff -u SPECS/samba.spec:1.321 SPECS/samba.spec:1.322
--- SPECS/samba.spec:1.321      Thu Mar  9 09:58:52 2006
+++ SPECS/samba.spec    Tue Mar 14 00:14:32 2006
@@ -82,13 +82,14 @@
 BuildRequires: rpm-pythonprov
 %endif
 BuildRequires: readline-devel >= 4.2
+BuildRequires: rpmbuild(macros) >= 1.268
 BuildRequires: xfsprogs-devel
-Requires:      rc-scripts
-Requires:      setup >= 2.4.6-7
 Requires(post,preun):  /sbin/chkconfig
 Requires:      %{name}-common = %{epoch}:%{version}-%{release}
 Requires:      logrotate
 Requires:      pam >= 0.66
+Requires:      rc-scripts
+Requires:      setup >= 2.4.6-7
 Obsoletes:     samba-vfs-block
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -1101,57 +1102,41 @@
 
 %post
 /sbin/chkconfig --add smb
-if [ -r /var/lock/subsys/smb ]; then
-       if [ -f /var/lock/samba/connections.tdb -a ! -f 
/var/lib/samba/connections.tdb ]; then
-               echo "Moving old /var/lock/samba contents to /var/lib/samba"
-               /etc/rc.d/init.d/smb stop >&2
-               mv -f /var/lock/samba/*.tdb /var/lib/samba 2>/dev/null || :
-               mv -f /var/lock/samba/*.dat /var/lib/samba 2>/dev/null || :
-               if [ -d /var/lock/samba/printing ]; then
-                       mv -f /var/lock/samba/printing/*.tdb 
/var/lib/samba/printing 2>/dev/null || :
-               fi
-               /etc/rc.d/init.d/smb start >&2
-       else
-               /etc/rc.d/init.d/smb restart >&2
+if [ -f /var/lock/samba/connections.tdb -a ! -f /var/lib/samba/connections.tdb 
]; then
+       echo >&2 "Moving old /var/lock/samba contents to /var/lib/samba"
+       /sbin/service smb stop >&2
+       mv -f /var/lock/samba/*.tdb /var/lib/samba 2>/dev/null || :
+       mv -f /var/lock/samba/*.dat /var/lib/samba 2>/dev/null || :
+       if [ -d /var/lock/samba/printing ]; then
+               mv -f /var/lock/samba/printing/*.tdb /var/lib/samba/printing 
2>/dev/null || :
        fi
+       /sbin/service smb start >&2
 else
-       echo "Run \"/etc/rc.d/init.d/smb start\" to start Samba daemons."
+       %service smb restart "Samba daemons"
 fi
 
 %preun
 if [ "$1" = "0" ]; then
-       if [ -r /var/lock/subsys/smb ]; then
-               /etc/rc.d/init.d/smb stop >&2
-       fi
+       %service smb stop
        /sbin/chkconfig --del smb
 fi
 
 %post winbind
 /sbin/chkconfig --add winbind
-if [ -r /var/lock/subsys/winbind ]; then
-       /etc/rc.d/init.d/winbind restart >&2
-else
-       echo "Run \"/etc/rc.d/init.d/winbind start\" to start Winbind daemon."
-fi
+%service winbind restart "Winbind daemon"
 
 %preun winbind
 if [ "$1" = "0" ]; then
-       if [ -r /var/lock/subsys/winbind ]; then
-               /etc/rc.d/init.d/winbind stop >&2
-       fi
+       %service winbind stop
        /sbin/chkconfig --del winbind
 fi
 
 %post swat
-if [ -f /var/lock/subsys/rc-inetd ]; then
-       /etc/rc.d/init.d/rc-inetd reload 1>&2
-else
-       echo "Type \"/etc/rc.d/init.d/rc-inetd start\" to start inet server" 
1>&2
-fi
+%service -q rc-inetd reload
 
 %postun swat
-if [ -f /var/lock/subsys/rc-inetd ]; then
-       /etc/rc.d/init.d/rc-inetd reload
+if [ "$1" = 0 ]; then
+       %service -q rc-inetd reload
 fi
 
 %post -n openldap-schema-samba
@@ -1169,9 +1154,7 @@
        ' /etc/openldap/slapd.conf
 fi
 
-if [ -f /var/lock/subsys/ldap ]; then
-       /etc/rc.d/init.d/ldap restart >&2
-fi
+%service -q ldap restart
 
 %postun -n openldap-schema-samba
 if [ "$1" = "0" ]; then
@@ -1184,9 +1167,7 @@
                ' /etc/openldap/slapd.conf
        fi
 
-       if [ -f /var/lock/subsys/ldap ]; then
-               /etc/rc.d/init.d/ldap restart >&2 || :
-       fi
+       %service -q ldap restart
 fi
 
 %triggerpostun -- samba < 1.9.18p7
@@ -1523,6 +1504,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.322  2006/03/13 23:14:32  glen
+- use %service
+
 Revision 1.321  2006/03/09 08:58:52  zawadaa
 - up to 3.0.21c, STBR
 

================================================================
Index: SPECS/sendmail.spec
diff -u SPECS/sendmail.spec:1.171 SPECS/sendmail.spec:1.172
--- SPECS/sendmail.spec:1.171   Sun Feb 19 22:58:00 2006
+++ SPECS/sendmail.spec Tue Mar 14 00:14:32 2006
@@ -51,16 +51,16 @@
 Patch5:                %{name}-redirect.patch
 Patch6:                %{name}-hprescan-dos.patch
 Patch7:                http://blue-labs.org/clue/bluelabs.patch-8.12.3
-BuildRequires: db-devel >= 4.1.25
 BuildRequires: cyrus-sasl-devel
+BuildRequires: db-devel >= 4.1.25
 BuildRequires: man
 %{?with_ldap:BuildRequires:    openldap-devel >= 2.3.0}
 %{?with_tls:BuildRequires:     openssl-devel >= 0.9.7d}
 %{?with_pgsql:BuildRequires:   postgresql-devel}
-BuildRequires: rpmbuild(macros) >= 1.202
+BuildRequires: rpmbuild(macros) >= 1.268
 Requires(post):        awk
 Requires(post):        textutils
-Requires(post,preun):/sbin/chkconfig
+Requires(post,preun):  /sbin/chkconfig
 Requires(post,preun):  rc-scripts >= 0.4.0.20
 Requires(postun):      /usr/sbin/groupdel
 Requires(postun):      /usr/sbin/userdel
@@ -372,17 +372,11 @@
 } > /dev/null 2>&1
 
 /sbin/chkconfig --add sendmail
-if [ -f /var/lock/subsys/sendmail ]; then
-       /etc/rc.d/init.d/sendmail restart >&2
-else
-       echo "Run \"/etc/rc.d/init.d/sendmail start\" to start sendmail 
daemon." >&2
-fi
+%service sendmail restart "sendmail daemon"
 
 %preun
 if [ "$1" = "0" ]; then
-       if [ -f /var/lock/subsys/sendmail ]; then
-               /etc/rc.d/init.d/sendmail stop >&2
-       fi
+       %service sendmail stop
        /sbin/chkconfig --del sendmail
 fi
 
@@ -476,6 +470,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.172  2006/03/13 23:14:32  glen
+- use %service
+
 Revision 1.171  2006/02/19 21:58:00  qboosh
 - updated to 8.13.5, dropped db3 bcond
 

================================================================
Index: SPECS/shaperd.2.spec
diff -u SPECS/shaperd.2.spec:1.29 SPECS/shaperd.2.spec:1.30
--- SPECS/shaperd.2.spec:1.29   Tue Dec 13 16:14:18 2005
+++ SPECS/shaperd.2.spec        Tue Mar 14 00:14:32 2006
@@ -16,6 +16,7 @@
 Patch1:                %{name}-iptables_path.patch
 #URL:          http://sp9wun.republika.pl/linux/shaperd_cbq.html
 URL:           http://www.cbq.trzepak.net/linux/shaperd_cbq.html
+BuildRequires: rpmbuild(macros) >= 1.268
 Requires(post,preun):  /sbin/chkconfig
 Requires:      firewall-userspace-tool
 Requires:      rc-scripts
@@ -39,7 +40,7 @@
 Summary:       PHP script for shaperd
 Summary(pl):   Skrypt PHP dla shaperd
 Group:         Networking/Admin
-Requires:      %{name} = %{version}
+Requires:      %{name} = %{version}-%{release}
 Requires:      php
 Requires:      webserver
 
@@ -77,17 +78,11 @@
 
 %post
 /sbin/chkconfig --add shaperd
-if [ -f /var/lock/subsys/shaperd ]; then
-       /etc/rc.d/init.d/shaperd restart >&2
-else
-       echo "Run \"/etc/rc.d/init.d/shaperd start\" to start shaperd daemon." 
>&2
-fi
+%service shaperd restart "shaperd daemon"
 
 %preun
 if [ "$1" = "0" ]; then
-       if [ -f /var/lock/subsys/shaperd ]; then
-               /etc/rc.d/init.d/shaperd stop >&2
-       fi
+       %service shaperd stop
        /sbin/chkconfig --del shaperd
 fi
 
@@ -95,16 +90,12 @@
 # apache1
 if [ -d %{_apache1dir}/conf.d ]; then
        ln -sf %{_sysconfdir}/apache-%{name}.conf 
%{_apache1dir}/conf.d/99_%{name}.conf
-       if [ -f /var/lock/subsys/apache ]; then
-               /etc/rc.d/init.d/apache restart 1>&2
-       fi
+       %service -q apache restart
 fi
 # apache2
 if [ -d %{_apache2dir}/httpd.conf ]; then
        ln -sf %{_sysconfdir}/apache-%{name}.conf 
%{_apache2dir}/httpd.conf/99_%{name}.conf
-       if [ -f /var/lock/subsys/httpd ]; then
-               /etc/rc.d/init.d/httpd restart 1>&2
-       fi
+       %service -q httpd restart
 fi
 
 %preun php
@@ -112,16 +103,12 @@
        # apache1
        if [ -d %{_apache1dir}/conf.d ]; then
                rm -f %{_apache1dir}/conf.d/99_%{name}.conf
-               if [ -f /var/lock/subsys/apache ]; then
-                       /etc/rc.d/init.d/apache restart 1>&2
-               fi
+               %service -q apache reload
        fi
        # apache2
        if [ -d %{_apache2dir}/httpd.conf ]; then
                rm -f %{_apache2dir}/httpd.conf/99_%{name}.conf
-               if [ -f /var/lock/subsys/httpd ]; then
-                       /etc/rc.d/init.d/httpd restart 1>&2
-               fi
+               %service -q httpd reload
        fi
 fi
 
@@ -147,6 +134,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.30  2006/03/13 23:14:32  glen
+- use %service
+
 Revision 1.29  2005/12/13 15:14:18  glen
 - adapterized (sorted %verify attrs)
 

================================================================
Index: SPECS/smartmontools.spec
diff -u SPECS/smartmontools.spec:1.27 SPECS/smartmontools.spec:1.28
--- SPECS/smartmontools.spec:1.27       Thu Jun  2 15:34:39 2005
+++ SPECS/smartmontools.spec    Tue Mar 14 00:14:32 2006
@@ -18,8 +18,9 @@
 URL:           http://smartmontools.sourceforge.net/
 BuildRequires: autoconf
 BuildRequires: automake
-PreReq:                rc-scripts
+BuildRequires: rpmbuild(macros) >= 1.268
 Requires(post,preun):  /sbin/chkconfig
+Requires:      rc-scripts
 Obsoletes:     smartctl
 Obsoletes:     smartsuite
 Obsoletes:     ucsc-smartsuite
@@ -37,7 +38,7 @@
 status and reports errors to syslog. Currently this package includes
 support for ATA/ATAPI-5 disks. It's intended to incorporate as much
 "vendor specific" and "reserved" information as possible about disk
-drives. 
+drives.
 
 %description -l cs
 smartmontools řídí a monitorují zařízení pro ukládání dat za použití
@@ -165,17 +166,11 @@
 
 %post
 /sbin/chkconfig --add smartd
-if [ -f /var/lock/subsys/smartd ]; then
-       /etc/rc.d/init.d/smartd restart 1>&2
-else
-       echo "Run \"/etc/rc.d/init.d/smartd start\" to start smartd service."
-fi
+%service smartd restart
 
 %preun
 if [ "$1" = "0" ]; then
-       if [ -f /var/lock/subsys/smartd ]; then
-               /etc/rc.d/init.d/smartd stop 1>&2
-       fi
+       %service smartd stop
        /sbin/chkconfig --del smartd
 fi
 
@@ -184,7 +179,7 @@
 %doc CHANGELOG README TODO
 %attr(755,root,root) %{_sbindir}/*
 %attr(754,root,root) /etc/rc.d/init.d/smartd
-%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/*.conf
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/*.conf
 %{_mandir}/man5/*
 %{_mandir}/man8/*
 
@@ -194,6 +189,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.28  2006/03/13 23:14:32  glen
+- use %service
+
 Revision 1.27  2005/06/02 13:34:39  qboosh
 - sorted verify() flags, use ascii space
 

================================================================
Index: SPECS/smartsuite.spec
diff -u SPECS/smartsuite.spec:1.14 SPECS/smartsuite.spec:1.15
--- SPECS/smartsuite.spec:1.14  Sun Oct 31 18:00:40 2004
+++ SPECS/smartsuite.spec       Tue Mar 14 00:14:32 2006
@@ -12,12 +12,13 @@
 Source1:       %{name}.init
 Patch0:                %{name}-u8.patch
 URL:           http://csl.cse.ucsc.edu/smart.shtml
-PreReq:                rc-scripts
+BuildRequires: rpmbuild(macros) >= 1.268
 Requires(post,preun):  /sbin/chkconfig
-BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+Requires:      rc-scripts
 Obsoletes:     smartctl
 Obsoletes:     smartmontools
 Obsoletes:     ucsc-smartsuite
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 UCSC SMART suite controls and monitors storage devices uning the
@@ -62,18 +63,12 @@
 
 %post
 /sbin/chkconfig --add smartd
-if [ -f /var/lock/subsys/smartd ]; then
-       /etc/rc.d/init.d/smartd restart 1>&2
-else
-       echo "Run \"/etc/rc.d/init.d/smartd start\" to start smartd service."
-fi
+%service smartd restart "smartd service"
 
 %preun
 if [ "$1" = "0" ]; then
-       if [ -f /var/lock/subsys/smartd ]; then
-               /etc/rc.d/init.d/smartd stop 1>&2
-       fi
-        /sbin/chkconfig --del smartd
+       %service smartd stop
+       /sbin/chkconfig --del smartd
 fi
 
 %files
@@ -89,6 +84,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.15  2006/03/13 23:14:32  glen
+- use %service
+
 Revision 1.14  2004/10/31 17:00:40  paladine
 - spaces->tabs
 - formatting

================================================================
Index: SPECS/smokeping.spec
diff -u SPECS/smokeping.spec:1.36 SPECS/smokeping.spec:1.37
--- SPECS/smokeping.spec:1.36   Fri Feb  3 17:47:58 2006
+++ SPECS/smokeping.spec        Tue Mar 14 00:14:32 2006
@@ -21,7 +21,7 @@
 URL:           http://people.ee.ethz.ch/~oetiker/webtools/smokeping/
 BuildRequires: perl-tools-pod
 BuildRequires: rpm-perlprov >= 4.1-13
-BuildRequires: rpmbuild(macros) >= 1.264
+BuildRequires: rpmbuild(macros) >= 1.268
 BuildRequires: rrdtool
 BuildRequires: sed >= 4.0
 Requires(post):        sed >= 4.0
@@ -138,18 +138,11 @@
 fi
 
 /sbin/chkconfig --add %{name}
-if [ -f /var/lock/subsys/%{name} ]; then
-       /etc/rc.d/init.d/%{name} restart 1>&2
-else
-       echo "Run \"/etc/rc.d/init.d/%{name} start\" to start smokeping."
-fi
+%service %{name} restart
 
 %preun
-if [ $1 = 0 ]; then
-       if [ -f /var/lock/subsys/%{name} ]; then
-               /etc/rc.d/init.d/%{name} stop 1>&2
-       fi
-
+if [ "$1" = 0 ]; then
+       %service %{name} stop
        /sbin/chkconfig --del %{name}
 fi
 
@@ -173,9 +166,7 @@
        mv -f /etc/httpd/httpd.conf/99_%{name}.conf.rpmsave 
%{_wwwconfdir}/httpd.conf
 fi
 
-if [ -f /var/lock/subsys/httpd ]; then
-       /etc/rc.d/init.d/httpd reload 1>&2
-fi
+%service -q httpd reload
 
 %banner -e %{name} << EOF
 The CGI program is available as %{name}-cgi package.
@@ -208,6 +199,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.37  2006/03/13 23:14:32  glen
+- use %service
+
 Revision 1.36  2006/02/03 16:47:58  baggins
 - release 3
 

================================================================
Index: SPECS/smstools.spec
diff -u SPECS/smstools.spec:1.40 SPECS/smstools.spec:1.41
--- SPECS/smstools.spec:1.40    Wed Aug 17 23:05:17 2005
+++ SPECS/smstools.spec Tue Mar 14 00:14:32 2006
@@ -14,8 +14,9 @@
 Patch1:                %{name}-Makefile.patch
 URL:           http://www.meinemullemaus.de/software/smstools/index.html
 BuildRequires: mm-devel
-PreReq:                rc-scripts
+BuildRequires: rpmbuild(macros) >= 1.268
 Requires(post,preun):  /sbin/chkconfig
+Requires:      rc-scripts
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -31,7 +32,7 @@
 np. bramkę email->SMS.
 
 %prep
-%setup -q -n smstools
+%setup -q -n %{name}
 %patch0 -p1
 %patch1 -p1
 
@@ -57,17 +58,11 @@
 
 %post
 /sbin/chkconfig --add smsd
-if [ -f /var/lock/subsys/smsd ]; then
-       /etc/rc.d/init.d/smsd restart 1>&2
-else
-       echo "Run \"/etc/rc.d/init.d/smsd start\" to start sms daemon."
-fi
+%service smsd restart "sms daemon"
 
 %preun
 if [ "$1" = "0" ]; then
-       if [ -f /var/lock/subsys/smsd ]; then
-               /etc/rc.d/init.d/smsd stop 1>&2
-       fi
+       %service smsd stop
        /sbin/chkconfig --del smsd
 fi
 
@@ -88,6 +83,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.41  2006/03/13 23:14:32  glen
+- use %service
+
 Revision 1.40  2005/08/17 21:05:17  zawadaa
 - URL fix
 

================================================================
Index: SPECS/snort.spec
diff -u SPECS/snort.spec:1.127 SPECS/snort.spec:1.128
--- SPECS/snort.spec:1.127      Mon Mar 13 14:10:31 2006
+++ SPECS/snort.spec    Tue Mar 14 00:14:32 2006
@@ -41,6 +41,7 @@
 BuildRequires: pcre-devel
 %{?with_pgsql:BuildRequires:   postgresql-devel}
 BuildRequires: rpmbuild(macros) >= 1.202
+BuildRequires: rpmbuild(macros) >= 1.268
 BuildRequires: zlib-devel
 Requires(post,preun):  /sbin/chkconfig
 Requires(postun):      /usr/sbin/groupdel
@@ -193,23 +194,19 @@
 %useradd -u 46 -g snort -M -r -d %{_var}/log/snort -s /bin/false -c "SNORT 
IDS/IPS" snort
 
 %post
-if [ "$1" = "1" ] ; then
-       /sbin/chkconfig --add snort
-fi
-if [ -f /var/lock/subsys/snort ]; then
-       /etc/rc.d/init.d/snort restart 1>&2
-else
-       echo "Run \"/etc/rc.d/init.d/snort start\" to start Snort daemon."
-       echo "To run snort you must download and install snort rules."
-       echo "poldek --install snort-rules or download from 
http://www.snort.org/";
+/sbin/chkconfig --add snort
+%service snort restart
+if [ "$1" = 1 ]; then
+       %banner -e %{name} <<-EOF
+       To run snort you must download and install snort rules.
+       poldek -u snort-rules or download from http://www.snort.org/
+EOF
 fi
 
 
 %preun
 if [ "$1" = "0" ] ; then
-       if [ -f /var/lock/subsys/snort ]; then
-               /etc/rc.d/init.d/snort stop 1>&2
-       fi
+       %service snort stop
        /sbin/chkconfig --del snort
 fi
 
@@ -245,6 +242,9 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.128  2006/03/13 23:14:32  glen
+- use %service
+
 Revision 1.127  2006/03/13 13:10:31  matowy
 - adapterized
 
@@ -292,7 +292,7 @@
 - rules up
 - enabled perfmonitor
 - added TODO
-NOTE: BUILDS&WORKS
+  NOTE: BUILDS&WORKS
 
 Revision 1.114  2005/04/18 08:51:42  misi3k
 - rel 1 STBR[AC]
@@ -304,7 +304,7 @@
 - up to 2.3.2
 - rel 0.1
 - updated URL
-NOTE: BUILDS but not tested
+  NOTE: BUILDS but not tested
 
 Revision 1.111  2005/02/10 14:02:01  qboosh
 - init perms unified
@@ -343,8 +343,8 @@
 - added macros in /etc/logrotate.d
 
 Revision 1.101  2004/09/15 21:10:25  ankry
-- %%userremove/%%groupremove support
-- don't use %%{name} macro in homedir
+- %userremove/%groupremove support
+- don't use %{name} macro in homedir
 - some standardization
 
 Revision 1.100  2004/09/06 20:26:00  arekm
@@ -356,7 +356,7 @@
 
 Revision 1.98  2004/08/21 20:41:12  misi3k
 - rel 1
-Note: Builds&Works
+  Note: Builds&Works
 
 Revision 1.97  2004/08/13 19:09:57  paszczus
 - updated  to 2.2.0
@@ -396,7 +396,7 @@
 
 Revision 1.85  2003/12/24 08:58:41  misi3k
<<Diff was trimmed, longer than 597 lines>>

---- CVS-web:
    http://cvs.pld-linux.org/SPECS/samba.spec?r1=1.321&r2=1.322&f=u
    http://cvs.pld-linux.org/SPECS/sendmail.spec?r1=1.171&r2=1.172&f=u
    http://cvs.pld-linux.org/SPECS/shaperd.2.spec?r1=1.29&r2=1.30&f=u
    http://cvs.pld-linux.org/SPECS/smartmontools.spec?r1=1.27&r2=1.28&f=u
    http://cvs.pld-linux.org/SPECS/smartsuite.spec?r1=1.14&r2=1.15&f=u
    http://cvs.pld-linux.org/SPECS/smokeping.spec?r1=1.36&r2=1.37&f=u
    http://cvs.pld-linux.org/SPECS/smstools.spec?r1=1.40&r2=1.41&f=u
    http://cvs.pld-linux.org/SPECS/snort.spec?r1=1.127&r2=1.128&f=u
    http://cvs.pld-linux.org/SPECS/stunnel.spec?r1=1.93&r2=1.94&f=u
    http://cvs.pld-linux.org/SPECS/swapd.spec?r1=1.25&r2=1.26&f=u
    http://cvs.pld-linux.org/SPECS/sysklogd.spec?r1=1.115&r2=1.116&f=u
    http://cvs.pld-linux.org/SPECS/sysstat.spec?r1=1.63&r2=1.64&f=u
    http://cvs.pld-linux.org/SPECS/tac_plus.spec?r1=1.9&r2=1.10&f=u
    http://cvs.pld-linux.org/SPECS/thttpd.spec?r1=1.57&r2=1.58&f=u
    http://cvs.pld-linux.org/SPECS/tpop3d.spec?r1=1.70&r2=1.71&f=u
    http://cvs.pld-linux.org/SPECS/ulogd.spec?r1=1.34&r2=1.35&f=u
    http://cvs.pld-linux.org/SPECS/vixie-cron.spec?r1=1.115&r2=1.116&f=u
    http://cvs.pld-linux.org/SPECS/vsftpd.spec?r1=1.46&r2=1.47&f=u
    http://cvs.pld-linux.org/SPECS/vtun.spec?r1=1.65&r2=1.66&f=u
    http://cvs.pld-linux.org/SPECS/wanpipe.spec?r1=1.27&r2=1.28&f=u
    http://cvs.pld-linux.org/SPECS/watchdog.spec?r1=1.26&r2=1.27&f=u
    http://cvs.pld-linux.org/SPECS/wccpd.spec?r1=1.19&r2=1.20&f=u
    http://cvs.pld-linux.org/SPECS/whoson.spec?r1=1.64&r2=1.65&f=u
    http://cvs.pld-linux.org/SPECS/wwwoffle.spec?r1=1.86&r2=1.87&f=u
    http://cvs.pld-linux.org/SPECS/ypbind-mt.spec?r1=1.48&r2=1.49&f=u
    http://cvs.pld-linux.org/SPECS/zebra-xs26.spec?r1=1.22&r2=1.23&f=u
    http://cvs.pld-linux.org/SPECS/zebra.spec?r1=1.107&r2=1.108&f=u
    http://cvs.pld-linux.org/SPECS/zmailer.spec?r1=1.81&r2=1.82&f=u

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to