Blame SPECS/fapolicyd.spec

5c9578
%global selinuxtype targeted
5c9578
%global moduletype contrib
5c9578
%define semodule_version 0.4
5c9578
5c9578
Summary: Application Whitelisting Daemon
5c9578
Name: fapolicyd
5c9578
Version: 1.1
6c7c4b
Release: 103%{?dist}.1
5c9578
License: GPLv3+
5c9578
URL: http://people.redhat.com/sgrubb/fapolicyd
5c9578
Source0: https://people.redhat.com/sgrubb/fapolicyd/%{name}-%{version}.tar.gz
5c9578
Source1: https://github.com/linux-application-whitelisting/%{name}-selinux/releases/download/v%{semodule_version}/%{name}-selinux-%{semodule_version}.tar.gz
5c9578
# we bundle uthash for rhel9
5c9578
Source2: https://github.com/troydhanson/uthash/archive/refs/tags/v2.3.0.tar.gz#/uthash-2.3.0.tar.gz
5c9578
BuildRequires: gcc
5c9578
BuildRequires: kernel-headers
5c9578
BuildRequires: autoconf automake make gcc libtool
5c9578
BuildRequires: systemd-devel libgcrypt-devel rpm-devel file-devel file
5c9578
BuildRequires: libcap-ng-devel libseccomp-devel lmdb-devel
5c9578
BuildRequires: python3-devel
5c9578
5c9578
%if 0%{?rhel} == 0
5c9578
BuildRequires: uthash-devel
5c9578
%endif
5c9578
5c9578
Requires: %{name}-plugin
5c9578
Recommends: %{name}-selinux
5c9578
Requires(pre): shadow-utils
5c9578
Requires(post): systemd-units
5c9578
Requires(preun): systemd-units
5c9578
Requires(postun): systemd-units
5c9578
5c9578
Patch1: fapolicyd-uthash-bundle.patch
5c9578
Patch2: fapolicyd-selinux.patch
5c9578
Patch3: fapolicyd-reorder-rules.patch
5c9578
Patch4: fagenrules-group.patch
5c9578
# 2069120 - CVE-2022-1117 fapolicyd: fapolicyd wrongly prepares ld.so path [rhel-8.6.0]
5c9578
Patch5: fapolicyd-1.1.1-ld_so.patch
6c7c4b
# 2097734 - Faulty handling of static applications [rhel-9.0.0.z]
6c7c4b
Patch6: fapolicyd-1.1.1-static.patch
5c9578
5c9578
%description
5c9578
Fapolicyd (File Access Policy Daemon) implements application whitelisting
5c9578
to decide file access rights. Applications that are known via a reputation
5c9578
source are allowed access while unknown applications are not. The daemon
5c9578
makes use of the kernel's fanotify interface to determine file access rights.
5c9578
5c9578
%package        selinux
5c9578
Summary:        Fapolicyd selinux
5c9578
Group:          Applications/System
5c9578
Requires:       %{name} = %{version}-%{release}
5c9578
BuildRequires:  selinux-policy
5c9578
BuildRequires:  selinux-policy-devel
5c9578
BuildArch: noarch
5c9578
%{?selinux_requires}
5c9578
5c9578
%description    selinux
5c9578
The %{name}-selinux package contains selinux policy for the %{name} daemon.
5c9578
5c9578
%package        dnf-plugin
5c9578
Summary:        Fapolicyd dnf plugin
5c9578
Group:          Applications/System
5c9578
Requires:       %{name} = %{version}-%{release}
5c9578
BuildArch:      noarch
5c9578
Provides:       %{name}-plugin
5c9578
5c9578
%description    dnf-plugin
5c9578
The %{name}-dnf-plugin notifies %{name} daemon about dnf update.
5c9578
The dnf plugin will be replaced with rpm plugin later.
5c9578
Don't use dnf and rpm plugin together.
5c9578
5c9578
5c9578
%prep
5c9578
5c9578
%setup -q
5c9578
5c9578
# selinux
5c9578
%setup -q -D -T -a 1
5c9578
5c9578
%if 0%{?rhel} != 0
5c9578
# uthash
5c9578
%setup -q -D -T -a 2
5c9578
%patch1 -p1 -b .uthash
5c9578
%endif
5c9578
5c9578
%patch2 -p1 -b .selinux
5c9578
%patch3 -p1 -b .reorder
5c9578
%patch4 -p1 -b .group
5c9578
%patch5 -p1 -b .ld_so
6c7c4b
%patch6 -p1 -b .static
5c9578
5c9578
# generate rules for python
5c9578
sed -i "s|%python2_path%|`readlink -f %{__python2}`|g" rules.d/*.rules
5c9578
sed -i "s|%python3_path%|`readlink -f %{__python3}`|g" rules.d/*.rules
5c9578
5c9578
interpret=`readelf -e /usr/bin/bash \
5c9578
                   | grep Requesting \
5c9578
                   | sed 's/.$//' \
5c9578
                   | rev | cut -d" " -f1 \
5c9578
                   | rev`
5c9578
5c9578
sed -i "s|%ld_so_path%|`realpath $interpret`|g" rules.d/*.rules
5c9578
5c9578
%build
5c9578
./autogen.sh
5c9578
%configure \
5c9578
    --with-audit \
5c9578
    --with-rpm \
5c9578
    --disable-shared
5c9578
5c9578
make CFLAGS="%{optflags}" %{?_smp_mflags}
5c9578
5c9578
# selinux
5c9578
pushd %{name}-selinux-%{semodule_version}
5c9578
make
5c9578
popd
5c9578
5c9578
%check
5c9578
make check
5c9578
5c9578
# selinux
5c9578
%pre selinux
5c9578
%selinux_relabel_pre -s %{selinuxtype}
5c9578
5c9578
%install
5c9578
%make_install
5c9578
mkdir -p %{buildroot}/%{python3_sitelib}/dnf-plugins/
5c9578
install -p -m 644 dnf/%{name}-dnf-plugin.py %{buildroot}/%{python3_sitelib}/dnf-plugins/
5c9578
install -p -m 644 -D init/%{name}-tmpfiles.conf %{buildroot}/%{_tmpfilesdir}/%{name}.conf
5c9578
mkdir -p %{buildroot}/%{_localstatedir}/lib/%{name}
5c9578
mkdir -p %{buildroot}/run/%{name}
5c9578
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/trust.d
5c9578
mkdir -p %{buildroot}%{_sysconfdir}/%{name}/rules.d
5c9578
# get list of file names between known-libs and restrictive from sample-rules/README-rules
5c9578
cat %{buildroot}/%{_datadir}/%{name}/sample-rules/README-rules \
5c9578
  | grep -A 100 'known-libs' \
5c9578
  | grep -B 100 'restrictive' \
5c9578
  | grep '^[0-9]' > %{buildroot}/%{_datadir}/%{name}/default-ruleset.known-libs
5c9578
chmod 644 %{buildroot}/%{_datadir}/%{name}/default-ruleset.known-libs
5c9578
5c9578
# selinux
5c9578
install -d %{buildroot}%{_datadir}/selinux/packages/%{selinuxtype}
5c9578
install -m 0644 %{name}-selinux-%{semodule_version}/%{name}.pp.bz2 %{buildroot}%{_datadir}/selinux/packages/%{selinuxtype}
5c9578
install -d -p %{buildroot}%{_datadir}/selinux/devel/include/%{moduletype}
5c9578
install -p -m 644 %{name}-selinux-%{semodule_version}/%{name}.if %{buildroot}%{_datadir}/selinux/devel/include/%{moduletype}/ipp-%{name}.if
5c9578
5c9578
#cleanup
5c9578
find %{buildroot} \( -name '*.la' -o -name '*.a' \) -delete
5c9578
5c9578
%define manage_default_rules   default_changed=0 \
5c9578
  # check changed fapolicyd.rules \
5c9578
  if [ -e %{_sysconfdir}/%{name}/%{name}.rules ]; then \
5c9578
    diff %{_sysconfdir}/%{name}/%{name}.rules %{_datadir}/%{name}/%{name}.rules.known-libs >/dev/null 2>&1 || { \
5c9578
      default_changed=1; \
5c9578
      #echo "change detected in fapolicyd.rules"; \
5c9578
      } \
5c9578
  fi \
5c9578
  if [ -e %{_sysconfdir}/%{name}/rules.d ]; then \
5c9578
    default_ruleset='' \
5c9578
    # get listing of default rule files in known-libs \
5c9578
    [ -e %{_datadir}/%{name}/default-ruleset.known-libs ] && default_ruleset=`cat %{_datadir}/%{name}/default-ruleset.known-libs` \
5c9578
    # check for removed or added files \
5c9578
    default_count=`echo "$default_ruleset" | wc -l` \
5c9578
    current_count=`ls -1 %{_sysconfdir}/%{name}/rules.d/*.rules | wc -l` \
5c9578
    [ $default_count -eq $current_count ] || { \
5c9578
      default_changed=1; \
5c9578
      #echo "change detected in number of rule files d:$default_count vs c:$current_count"; \
5c9578
      } \
5c9578
    for file in %{_sysconfdir}/%{name}/rules.d/*.rules; do \
5c9578
      if echo "$default_ruleset" | grep -q "`basename $file`"; then \
5c9578
        # compare content of the rule files \
5c9578
        diff $file %{_datadir}/%{name}/sample-rules/`basename $file` >/dev/null 2>&1 || { \
5c9578
          default_changed=1; \
5c9578
          #echo "change detected in `basename $file`"; \
5c9578
          } \
5c9578
      else \
5c9578
        # added file detected \
5c9578
        default_changed=1 \
5c9578
        #echo "change detected in added rules file `basename $file`"; \
5c9578
      fi \
5c9578
    done \
5c9578
  fi \
5c9578
  # remove files if no change against default rules detected \
5c9578
  [ $default_changed -eq 0 ] && rm -rf %{_sysconfdir}/%{name}/%{name}.rules %{_sysconfdir}/%{name}/rules.d/* || : \
5c9578
5c9578
5c9578
%pre
5c9578
getent passwd %{name} >/dev/null || useradd -r -M -d %{_localstatedir}/lib/%{name} -s /sbin/nologin -c "Application Whitelisting Daemon" %{name}
5c9578
if [ $1 -eq 2 ]; then
5c9578
# detect changed default rules in case of upgrade
5c9578
%manage_default_rules
5c9578
fi
5c9578
5c9578
%post
5c9578
# if no pre-existing rule file
5c9578
if [ ! -e %{_sysconfdir}/%{name}/%{name}.rules ] ; then
5c9578
 files=`ls %{_sysconfdir}/%{name}/rules.d/ 2>/dev/null | wc -w`
5c9578
 # Only if no pre-existing component rules
5c9578
 if [ "$files" -eq 0 ] ; then
5c9578
  ## Install the known libs policy
5c9578
  for rulesfile in `cat %{_datadir}/%{name}/default-ruleset.known-libs`; do
5c9578
    cp %{_datadir}/%{name}/sample-rules/$rulesfile  %{_sysconfdir}/%{name}/rules.d/
5c9578
  done
5c9578
  chgrp %{name} %{_sysconfdir}/%{name}/rules.d/*
5c9578
  if [ -x /usr/sbin/restorecon ] ; then
5c9578
   # restore correct label
5c9578
   /usr/sbin/restorecon -F %{_sysconfdir}/%{name}/rules.d/*
5c9578
  fi
5c9578
  fagenrules > /dev/null 2>&1
5c9578
 fi
5c9578
fi
5c9578
%systemd_post %{name}.service
5c9578
5c9578
%preun
5c9578
%systemd_preun %{name}.service
5c9578
if [ $1 -eq 0 ]; then
5c9578
# detect changed default rules in case of uninstall
5c9578
%manage_default_rules
5c9578
else
5c9578
  [ -e %{_sysconfdir}/%{name}/%{name}.rules ] && rm -rf %{_sysconfdir}/%{name}/rules.d/* || :
5c9578
fi
5c9578
5c9578
%postun
5c9578
%systemd_postun_with_restart %{name}.service
5c9578
5c9578
%files
5c9578
%doc README.md
5c9578
%{!?_licensedir:%global license %%doc}
5c9578
%license COPYING
5c9578
%attr(755,root,%{name}) %dir %{_datadir}/%{name}
5c9578
%attr(755,root,%{name}) %dir %{_datadir}/%{name}/sample-rules
5c9578
%attr(644,root,%{name}) %{_datadir}/%{name}/default-ruleset.known-libs
5c9578
%attr(644,root,%{name}) %{_datadir}/%{name}/sample-rules/*
5c9578
%attr(644,root,%{name}) %{_datadir}/%{name}/fapolicyd-magic.mgc
5c9578
%attr(750,root,%{name}) %dir %{_sysconfdir}/%{name}
5c9578
%attr(750,root,%{name}) %dir %{_sysconfdir}/%{name}/trust.d
5c9578
%attr(750,root,%{name}) %dir %{_sysconfdir}/%{name}/rules.d
5c9578
%ghost %verify(not md5 size mtime) %attr(644,root,%{name}) %{_sysconfdir}/%{name}/rules.d/*
5c9578
%ghost %verify(not md5 size mtime) %attr(644,root,%{name}) %{_sysconfdir}/%{name}/%{name}.rules
5c9578
%config(noreplace) %attr(644,root,%{name}) %{_sysconfdir}/%{name}/%{name}.conf
5c9578
%config(noreplace) %attr(644,root,%{name}) %{_sysconfdir}/%{name}/%{name}.trust
5c9578
%ghost %attr(644,root,%{name}) %{_sysconfdir}/%{name}/compiled.rules
5c9578
%attr(644,root,root) %{_unitdir}/%{name}.service
5c9578
%attr(644,root,root) %{_tmpfilesdir}/%{name}.conf
5c9578
%attr(755,root,root) %{_sbindir}/%{name}
5c9578
%attr(755,root,root) %{_sbindir}/%{name}-cli
5c9578
%attr(755,root,root) %{_sbindir}/fagenrules
5c9578
%attr(644,root,root) %{_mandir}/man8/*
5c9578
%attr(644,root,root) %{_mandir}/man5/*
5c9578
%attr(644,root,root) %{_mandir}/man1/*
5c9578
%ghost %attr(440,%{name},%{name}) %verify(not md5 size mtime) %{_localstatedir}/log/%{name}-access.log
5c9578
%attr(770,root,%{name}) %dir %{_localstatedir}/lib/%{name}
5c9578
%attr(770,root,%{name}) %dir /run/%{name}
5c9578
%ghost %attr(660,root,%{name}) /run/%{name}/%{name}.fifo
5c9578
%ghost %attr(660,%{name},%{name}) %verify(not md5 size mtime) %{_localstatedir}/lib/%{name}/data.mdb
5c9578
%ghost %attr(660,%{name},%{name}) %verify(not md5 size mtime) %{_localstatedir}/lib/%{name}/lock.mdb
5c9578
5c9578
5c9578
%files selinux
5c9578
%{_datadir}/selinux/packages/%{selinuxtype}/%{name}.pp.bz2
5c9578
%ghost %verify(not md5 size mode mtime) %{_sharedstatedir}/selinux/%{selinuxtype}/active/modules/200/%{name}
5c9578
%{_datadir}/selinux/devel/include/%{moduletype}/ipp-%{name}.if
5c9578
5c9578
%post selinux
5c9578
%selinux_modules_install -s %{selinuxtype} %{_datadir}/selinux/packages/%{selinuxtype}/%{name}.pp.bz2
5c9578
%selinux_relabel_post -s %{selinuxtype}
5c9578
5c9578
%postun selinux
5c9578
if [ $1 -eq 0 ]; then
5c9578
    %selinux_modules_uninstall -s %{selinuxtype} %{name}
5c9578
fi
5c9578
5c9578
%posttrans selinux
5c9578
%selinux_relabel_post -s %{selinuxtype}
5c9578
5c9578
%files dnf-plugin
5c9578
%{python3_sitelib}/dnf-plugins/%{name}-dnf-plugin.py
5c9578
%{python3_sitelib}/dnf-plugins/__pycache__/%{name}-dnf-plugin.*.pyc
5c9578
5c9578
5c9578
%changelog
6c7c4b
* Thu Jun 16 2022 Radovan Sroka <rsroka@redhat.com> - 1.1-103-1
6c7c4b
RHEL 9.0.Z ERRATUM
6c7c4b
- Faulty handling of static applications
6c7c4b
Resolves: rhbz#2097734
6c7c4b
5c9578
* Wed Apr 06 2022 Radovan Sroka <rsroka@redhat.com> - 1.1-103
5c9578
RHEL 9.0.0 ERRATUM
5c9578
- CVE-2022-1117 fapolicyd: fapolicyd wrongly prepares ld.so path
5c9578
Resolves: rhbz#2069122
5c9578
5c9578
* Sun Apr 3 2022 Radovan Sroka <rsroka@redhat.com> - 1.1-101
5c9578
RHEL 9.0.0 ERRATUM
5c9578
- fapolicyd denies access to /usr/lib64/ld-2.28.so
5c9578
Resolves: rhbz#2066904
5c9578
5c9578
* Wed Feb 16 2022 Radovan Sroka <rsroka@redhat.com> - 1.1-100
5c9578
RHEL 9.0.0 ERRATUM
5c9578
- rebase to 1.1
5c9578
Resolves: rhbz#2032408
5c9578
- introduce rules.d
5c9578
Resolves: rhbz#2054740
5c9578
- remove pretrans scriptlet
5c9578
Resolve: rhbz#2051481
5c9578
5c9578
* Tue Dec 14 2021 Zoltan Fridrich <zfridric@redhat.com> - 1.0.4-101
5c9578
RHEL 9.0.0 ERRATUM
5c9578
- rebase to 1.0.4
5c9578
- added rpm_sha256_only option
5c9578
- added trust.d directory
5c9578
- allow file names with whitespaces in trust files
5c9578
- use full paths in trust files
5c9578
Resolves: rhbz#2032408
5c9578
- fix libc.so getting identified as application/x-executable
5c9578
Resolves: rhbz#2015307
5c9578
- fix selinux DSP module definition in spec file
5c9578
Resolves: rhbz#2014449
5c9578
5c9578
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.3-4
5c9578
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
5c9578
  Related: rhbz#1991688
5c9578
5c9578
* Tue Jul 20 2021 Radovan Sroka <rsroka@redhat.com> - 1.0.3-3
5c9578
RHEL 9 BETA
5c9578
- SELinux prevents fapolicyd from watch_mount/watch_with_perm on /dev/shm
5c9578
Resolves: rhbz#1932225
5c9578
Resolves: rhbz#1977731
5c9578
5c9578
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 1.0.3-2
5c9578
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
5c9578
5c9578
* Thu Apr 01 2021 Radovan Sroka <rsroka@redhat.com> - 1.0.3-1
5c9578
- rebase to 1.0.3
5c9578
- sync fedora with rhel
5c9578
5c9578
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.2-2
5c9578
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
5c9578
5c9578
* Wed Jan 06 2021 Radovan Sroka <rsroka@redhat.com> - 1.0.2-1
5c9578
- rebase to 1.0.2
5c9578
- enabled make check
5c9578
- dnf-plugin is now required subpackage
5c9578
5c9578
* Mon Nov 16 2020 Radovan Sroka <rsroka@redhat.com> - 1.0.1-1
5c9578
- rebase to 1.0.1
5c9578
- introduced uthash dependency
5c9578
- SELinux prevents the fapolicyd process from writing to /run/dbus/system_bus_socket
5c9578
Resolves: rhbz#1874491
5c9578
- SELinux prevents the fapolicyd process from writing to /var/lib/rpm directory
5c9578
Resolves: rhbz#1876538
5c9578
5c9578
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-4
5c9578
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
5c9578
5c9578
* Wed Jun 24 2020 Radovan Sroka <rsroka@redhat.com> - 1.0-3
5c9578
- backported few cosmetic small patches from upstream master
5c9578
- rebase selinux tarbal to v0.3
5c9578
- file context pattern for /run/fapolicyd.pid is missing
5c9578
Resolves: rhbz#1834674
5c9578
5c9578
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 1.0-2
5c9578
- Rebuilt for Python 3.9
5c9578
5c9578
* Mon May 25 2020 Radovan Sroka <rsroka@redhat.com> - 1.0-1
5c9578
- rebase fapolicyd to 1.0
5c9578
- allowed sys_ptrace for user namespace
5c9578
5c9578
* Mon Mar 23 2020 Radovan Sroka <rsroka@redhat.com> - 0.9.4-1
5c9578
- rebase fapolicyd to 0.9.4
5c9578
- polished the pattern detection engine
5c9578
- rpm backend now drops most of the files in /usr/share/ to dramatically reduce
5c9578
  memory consumption and improve startup speed
5c9578
- the commandline utility can now delete the lmdb trust database and manage
5c9578
  the file trust source
5c9578
5c9578
* Mon Feb 24 2020 Radovan Sroka <rsroka@redhat.com> - 0.9.3-1
5c9578
- rebase fapolicyd to 0.9.3
5c9578
- dramatically improved startup time
5c9578
- fapolicyd-cli has picked up --list and --ftype commands to help debug/write policy
5c9578
- file type identification has been improved
5c9578
- trust database statistics have been added to the reports
5c9578
5c9578
* Tue Feb 04 2020 Radovan Sroka <rsroka@redhat.com> - 0.9.2-2
5c9578
- Label all fifo_file as fapolicyd_var_run_t in /var/run.
5c9578
- Allow fapolicyd_t domain to create fifo files labeled as
5c9578
  fapolicyd_var_run_t
5c9578
5c9578
* Fri Jan 31 2020 Radovan Sroka <rsroka@redhat.com> - 0.9.2-1
5c9578
- rebase fapolicyd to 0.9.2
5c9578
- allows watched mount points to be specified by file system types
5c9578
- ELF file detection was improved
5c9578
- the rules have been rewritten to express the policy based on subject
5c9578
  object trust for better performance and reliability
5c9578
- exceptions for dracut and ansible were added to the rules to avoid problems
5c9578
  under normal system use
5c9578
- adds an admin defined trust database (fapolicyd.trust)
5c9578
- setting boost, queue, user, and group on the daemon
5c9578
  command line are deprecated
5c9578
5c9578
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9-4
5c9578
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
5c9578
5c9578
* Tue Nov 05 2019 Marek Tamaskovic <mtamasko@redhat.com> - 0.9-3
5c9578
- Updated fapolicyd-selinux subpackage to v0.2
5c9578
  Selinux subpackage is recommended for fapolicyd.
5c9578
5c9578
* Mon Oct 07 2019 Radovan Sroka <rsroka@redhat.com> - 0.9-2
5c9578
- Added fapolicyd-selinux subpackage
5c9578
5c9578
* Mon Oct 07 2019 Radovan Sroka <rsroka@redhat.com> - 0.9-1
5c9578
- rebase to v0.9
5c9578
5c9578
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.8.10-2
5c9578
- Rebuilt for Python 3.8.0rc1 (#1748018)
5c9578
5c9578
* Wed Aug 28 2019 Radovan Sroka <rsroka@redhat.com> - 0.8.10-1
5c9578
- rebase to 0.8.10
5c9578
- generate python paths dynamically
5c9578
5c9578
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.8.9-5
5c9578
- Rebuilt for Python 3.8
5c9578
5c9578
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.9-4
5c9578
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
5c9578
5c9578
* Mon Jun 10 22:13:18 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.8.9-3
5c9578
- Rebuild for RPM 4.15
5c9578
5c9578
* Mon Jun 10 15:42:01 CET 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.8.9-2
5c9578
- Rebuild for RPM 4.15
5c9578
5c9578
* Mon May 06 2019 Radovan Sroka <rsroka@redhat.com> - 0.8.9-1
5c9578
- New upstream release
5c9578
5c9578
* Wed Mar 13 2019 Radovan Sroka <rsroka@redhat.com> - 0.8.8-2
5c9578
- backport some patches to resolve dac_override for fapolicyd
5c9578
5c9578
* Mon Mar 11 2019 Radovan Sroka <rsroka@redhat.com> - 0.8.8-1
5c9578
- New upstream release
5c9578
- Added new DNF plugin that can update the trust database when rpms are installed
5c9578
- Added support for FAN_OPEN_EXEC_PERM
5c9578
5c9578
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.7-3
5c9578
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
5c9578
5c9578
5c9578
* Wed Oct 03 2018 Steve Grubb <sgrubb@redhat.com> 0.8.7-1
5c9578
- New upstream bugfix release
5c9578
5c9578
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-2
5c9578
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
5c9578
5c9578
* Thu Jun 07 2018 Steve Grubb <sgrubb@redhat.com> 0.8.6-1
5c9578
- New upstream feature release
5c9578
5c9578
* Fri May 18 2018 Steve Grubb <sgrubb@redhat.com> 0.8.5-2
5c9578
- Add dist tag (#1579362)
5c9578
5c9578
* Fri Feb 16 2018 Steve Grubb <sgrubb@redhat.com> 0.8.5-1
5c9578
- New release