/[smeserver]/rpms/smeserver-clamav/sme10/smeserver-clamav.spec
ViewVC logotype

Diff of /rpms/smeserver-clamav/sme10/smeserver-clamav.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

Revision 1.10 by jpp, Wed Apr 7 21:05:46 2021 UTC Revision 1.15 by jpp, Mon Dec 20 14:43:14 2021 UTC
# Line 1  Line 1 
1  # $Id: smeserver-clamav.spec,v 1.9 2021/01/08 22:25:52 jpp Exp $  # $Id: smeserver-clamav.spec,v 1.14 2021/11/15 18:20:56 jpp Exp $
2    
3  Summary: SME Server module to configure clamav  Summary: SME Server module to configure clamav
4  %define name smeserver-clamav  %define name smeserver-clamav
5  Name: %{name}  Name: %{name}
6  %define version 2.7.0  %define version 2.7.0
7  %define release 6  %define release 11
8  Version: %{version}  Version: %{version}
9  Release: %{release}%{?dist}  Release: %{release}%{?dist}
10  License: GPL  License: GPL
# Line 13  Source: %{name}-%{version}.tar.xz Line 13  Source: %{name}-%{version}.tar.xz
13  Patch0: smeserver-clamav-2.7.0-bz11103-improvements.patch  Patch0: smeserver-clamav-2.7.0-bz11103-improvements.patch
14  Patch1: smeserver-clamav-2.7.0-bz11313-clamdtop.patch  Patch1: smeserver-clamav-2.7.0-bz11313-clamdtop.patch
15  Patch2: smeserver-clamav-2.7.0-bz11520-clamd2scan.conf.patch  Patch2: smeserver-clamav-2.7.0-bz11520-clamd2scan.conf.patch
16    Patch3: smeserver-clamav-2.7.0-bz11755-identify-freshclam-error.patch
17    Patch4: smeserver-clamav-2.7.0-bz11695-properties.patch
18    
19  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot  BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
20  BuildArchitectures: noarch  BuildArchitectures: noarch
# Line 35  BuildRequires: e-smith-devtools Line 37  BuildRequires: e-smith-devtools
37  SME Server enhancement to configure and run clamd and freshclam  SME Server enhancement to configure and run clamd and freshclam
38    
39  %changelog  %changelog
40    * Mon Dec 20 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-11.sme
41    - rename property ArchiveBlockEncrypted to AlertEncrypted as per upstream [SME: 11695]
42      added properties AlertBrokenExecutables AlertExceedsMax AlertOLE2Macros
43      AlertPartitionIntersection AlertPhishingCloak and AlertPhishingSSLMismatch
44      with default no
45      added property HeuristicAlerts with default yes
46    - fix noise on centos2sme [SME: 11474]
47    
48    * Mon Nov 15 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-10.sme
49    - identify from which server is freshclam error [SME: 11755]
50      fix from  Graeme Fleming
51    
52    * Wed Jun 09 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-9.sme
53    - fix typo in logrotate [SME: 11608]
54    
55    * Sun Apr 18 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-8.sme
56    - fix typo and missing +x [SME: 11520]
57    
58  * Wed Apr 07 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-6.sme  * Wed Apr 07 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-6.sme
59  - fix issues with non epel standard scan.conf [SME: 11520]  - fix issues with non epel standard scan.conf [SME: 11520]
60    move clamd.conf to scan.conf    move clamd.conf to scan.conf
# Line 392  rm -rf root/etc/e-smith/templates/usr/li Line 412  rm -rf root/etc/e-smith/templates/usr/li
412  rm -rf root/usr/lib/systemd/system/freshclam.service.d  rm -rf root/usr/lib/systemd/system/freshclam.service.d
413  %patch1 -p1  %patch1 -p1
414  %patch2 -p1  %patch2 -p1
415    %patch3 -p1
416    
417  %build  %build
418  perl createlinks  perl createlinks
# Line 411  if [ $1 -gt 1 ] ; then Line 432  if [ $1 -gt 1 ] ; then
432  fi  fi
433  %post  %post
434  # removing old conf file  # removing old conf file
435  if [[ -f /etc/clam.d/clamd.conf ]]; then  if [[ -f /etc/clamd.d/clamd.conf ]]; then
436     rm -f /etc/clam.d/clamd.conf     rm -f /etc/clamd.d/clamd.conf
437  fi  fi
438    
439  #echo "Changing freshclam log owners"  #echo "Changing freshclam log owners"
440  if [[ -d /var/log/freshclam ]]; then  if [[ -d /var/log/freshclam ]]; then
441    chown -R clamupdate:clamupdate /var/log/freshclam;    chown -R clamupdate:clamupdate /var/log/freshclam;
   chown -R clamupdate:clamupdate /var/log/freshclam/*;  
442  fi  fi
443    
444  #echo "Changing clamd log owners"  #echo "Changing clamd log owners"
445  if [[ -d /var/log/clamd ]]; then  if [[ -d /var/log/clamd ]]; then
446    chown -R clamscan:clamscan /var/log/clamd;    chown -R clamscan:clamscan /var/log/clamd;
   chown -R clamscan:clamscan /var/log/clamd/*;  
447  fi  fi
448    
449  %install  %install
# Line 435  rm -rf $RPM_BUILD_ROOT Line 454  rm -rf $RPM_BUILD_ROOT
454    --dir /var/log/freshclam 'attr(2755,clamupdate,clamupdate)' \    --dir /var/log/freshclam 'attr(2755,clamupdate,clamupdate)' \
455    --dir /var/log/clamd 'attr(2755,clamscan,clamscan)' \    --dir /var/log/clamd 'attr(2755,clamscan,clamscan)' \
456    --dir /var/spool/clamav/quarantine 'attr(2750,clamscan,clamscan)' \    --dir /var/spool/clamav/quarantine 'attr(2750,clamscan,clamscan)' \
457      --file /sbin/clamdscan 'attr(0755,root,root)' \
458    --file /sbin/e-smith/freshclam-update-failed 'attr(0755,root,root)' \    --file /sbin/e-smith/freshclam-update-failed 'attr(0755,root,root)' \
459    --file /sbin/e-smith/freshclam-update-ok 'attr(0755,root,root)' \    --file /sbin/e-smith/freshclam-update-ok 'attr(0755,root,root)' \
460    --file /sbin/e-smith/smeserver-clamscan 'attr(0755,root,root)' \    --file /sbin/e-smith/smeserver-clamscan 'attr(0755,root,root)' \


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed