bffaa6
%global debug_package   %{nil}
bffaa6
bffaa6
# container-selinux
bffaa6
%global git0 https://github.com/containers/container-selinux
bffaa6
bffaa6
# container-selinux stuff (prefix with ds_ for version/release etc.)
bffaa6
# Some bits borrowed from the openstack-selinux package
bffaa6
%global selinuxtype targeted
bffaa6
%global moduletype services
bffaa6
%global modulenames container
bffaa6
bffaa6
# Usage: _format var format
bffaa6
# Expand 'modulenames' into various formats as needed
bffaa6
# Format must contain '$x' somewhere to do anything useful
bffaa6
%global _format() export %1=""; for x in %{modulenames}; do %1+=%2; %1+=" "; done;
bffaa6
bffaa6
# Version of SELinux we were using
bffaa6
%global selinux_policyver 3.14.3-9.el8
bffaa6
bffaa6
Epoch: 2
bffaa6
Name: container-selinux
a2d00e
Version: 2.165.1
a2d00e
Release: 2%{?dist}
bffaa6
License: GPLv2
bffaa6
URL: %{git0}
bffaa6
Summary: SELinux policies for container runtimes
bffaa6
Source0: %{git0}/archive/v%{version}.tar.gz
5d02df
Patch0: rhel-fix.patch
5d02df
Patch1: container-selinux-1957904.patch
bffaa6
BuildArch: noarch
bffaa6
BuildRequires: git
bffaa6
BuildRequires: pkgconfig(systemd)
bffaa6
BuildRequires: selinux-policy >= %{selinux_policyver}
bffaa6
BuildRequires: selinux-policy-devel >= %{selinux_policyver}
bffaa6
# RE: rhbz#1195804 - ensure min NVR for selinux-policy
bffaa6
Requires: selinux-policy >= %{selinux_policyver}
bffaa6
Requires(post): selinux-policy-base >= %{selinux_policyver}
bffaa6
Requires(post): selinux-policy-targeted >= %{selinux_policyver}
bffaa6
Requires(post): policycoreutils >= 2.5-11
bffaa6
%if 0%{?rhel} > 7 || 0%{?fedora}
bffaa6
Requires(post): policycoreutils-python-utils
bffaa6
%else
bffaa6
Requires(post): policycoreutils-python
bffaa6
%endif
bffaa6
Requires(post): libselinux-utils
bffaa6
Requires(post): sed
bffaa6
Obsoletes: %{name} <= 2:1.12.5-14
bffaa6
Obsoletes: docker-selinux <= 2:1.12.4-28
bffaa6
Provides: docker-selinux = %{epoch}:%{version}-%{release}
bffaa6
Provides: docker-engine-selinux = %{epoch}:%{version}-%{release}
bffaa6
bffaa6
%description
bffaa6
SELinux policy modules for use with container runtimes.
bffaa6
bffaa6
%prep
bffaa6
%autosetup -Sgit
bffaa6
bffaa6
%build
bffaa6
make
bffaa6
bffaa6
%install
bffaa6
# install policy modules
bffaa6
%_format MODULES $x.pp.bz2
bffaa6
install -d %{buildroot}%{_datadir}/selinux/packages
bffaa6
install -d -p %{buildroot}%{_datadir}/selinux/devel/include/services
bffaa6
install -p -m 644 container.if %{buildroot}%{_datadir}/selinux/devel/include/services
bffaa6
install -m 0644 $MODULES %{buildroot}%{_datadir}/selinux/packages
bffaa6
install -d %{buildroot}/%{_datadir}/containers/selinux
bffaa6
install -m 644 container_contexts %{buildroot}/%{_datadir}/containers/selinux/contexts
bffaa6
bffaa6
# remove spec file
bffaa6
rm -rf %{name}.spec
bffaa6
bffaa6
%check
bffaa6
bffaa6
%pre
bffaa6
%selinux_relabel_pre -s %{selinuxtype}
bffaa6
bffaa6
%post
bffaa6
# Install all modules in a single transaction
bffaa6
if [ $1 -eq 1 ]; then
bffaa6
   %{_sbindir}/setsebool -P -N virt_use_nfs=1 virt_sandbox_use_all_caps=1
bffaa6
fi
bffaa6
%_format MODULES %{_datadir}/selinux/packages/$x.pp.bz2
bffaa6
%{_sbindir}/semodule -n -s %{selinuxtype} -r container 2> /dev/null
bffaa6
%{_sbindir}/semodule -n -s %{selinuxtype} -d docker 2> /dev/null
bffaa6
%{_sbindir}/semodule -n -s %{selinuxtype} -d gear 2> /dev/null
bffaa6
%selinux_modules_install -s %{selinuxtype} $MODULES
bffaa6
. %{_sysconfdir}/selinux/config
bffaa6
sed -e "\|container_file_t|h; \${x;s|container_file_t||;{g;t};a\\" -e "container_file_t" -e "}" -i /etc/selinux/${SELINUXTYPE}/contexts/customizable_types > /dev/null 2>&1
bffaa6
matchpathcon -qV %{_sharedstatedir}/containers || restorecon -R %{_sharedstatedir}/containers &> /dev/null || :
bffaa6
bffaa6
%postun
bffaa6
if [ $1 -eq 0 ]; then
bffaa6
%selinux_modules_uninstall -s %{selinuxtype} %{modulenames} docker
bffaa6
fi
bffaa6
bffaa6
%posttrans
bffaa6
%selinux_relabel_post -s %{selinuxtype}
bffaa6
bffaa6
#define license tag if not already defined
bffaa6
%{!?_licensedir:%global license %doc}
bffaa6
bffaa6
%files
bffaa6
%doc README.md
bffaa6
%{_datadir}/selinux/*
bffaa6
%dir %{_datadir}/containers/selinux
bffaa6
%{_datadir}/containers/selinux/contexts
bffaa6
bffaa6
%changelog
a2d00e
* Wed Aug 25 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.165.1-2
a2d00e
- update to https://github.com/containers/container-selinux/releases/tag/v2.165.1
a2d00e
- Related: #1934415
a2d00e
b888a1
* Tue Aug 03 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.164.2-1
b888a1
- update to https://github.com/containers/container-selinux/releases/tag/v2.164.2
b888a1
- Related: #1934415
b888a1
5d02df
* Wed Jul 21 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.164.1-1
5d02df
- update to https://github.com/containers/container-selinux/releases/tag/v2.164.1
5d02df
- Related: #1934415
5d02df
5d02df
* Thu Jun 17 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.163.0-2
5d02df
- fix the build of 2.163.0
5d02df
- Resolves: #1957904
5d02df
5d02df
* Tue Jun 15 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.163.0-1
5d02df
- update to https://github.com/containers/container-selinux/releases/tag/v2.163.0
5d02df
- Related: #1934415
5d02df
5d02df
* Tue May 25 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.162.2-1
5d02df
- update to https://github.com/containers/container-selinux/releases/tag/v2.162.2
5d02df
- Related: #1934415
5d02df
5d02df
* Wed May 19 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.162.1-1
5d02df
- update to https://github.com/containers/container-selinux/releases/tag/v2.162.1
5d02df
- Related: #1934415
5d02df
5d02df
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.162.0-1
5d02df
- update to https://github.com/containers/container-selinux/releases/tag/v2.162.0
5d02df
- Related: #1934415
5d02df
5d02df
* Thu May 06 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.161.1-2
5d02df
- do not use lockdown class yet - it is not available in RHEL
5d02df
- Related: #1934415
5d02df
5d02df
* Thu May 06 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.161.1-1
5d02df
- update to https://github.com/containers/container-selinux/releases/tag/v2.161.1
5d02df
- Related: #1934415
5d02df
5d02df
* Wed Apr 28 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.160.2-1
5d02df
- update to https://github.com/containers/container-selinux/releases/tag/v2.160.2
5d02df
- Related: #1934415
5d02df
5d02df
* Mon Apr 26 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.160.1-1
5d02df
- update to
5d02df
  https://github.com/containers/container-selinux/releases/tag/v2.160.1
5d02df
- Related: #1934415
5d02df
5d02df
* Wed Mar 31 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.160.0-1
5d02df
- update to https://github.com/containers/container-selinux/releases/tag/v2.160.0
5d02df
- Related: #1934415
5d02df
5d02df
* Tue Mar 23 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.159.0-1
5d02df
- update to https://github.com/containers/container-selinux/releases/tag/v2.159.0
5d02df
- Related: #1934415
5d02df
7999fc
* Fri Feb 12 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.158.0-1
7999fc
- update to https://github.com/containers/container-selinux/releases/tag/v2.158.0
7999fc
- Related: #1883490
7999fc
d9d254
* Fri Jan 15 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.156.0-1
d9d254
- update to
d9d254
  https://github.com/containers/container-selinux/releases/tag/v2.156.0
d9d254
- Related: #1883490
d9d254
b0856b
* Tue Jan 05 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.155.0-1
b0856b
- update to https://github.com/containers/container-selinux/releases/tag/v2.155.0
be23f5
- Related: #1883490
b0856b
b0856b
* Sat Jan 02 2021 Jindrich Novy <jnovy@redhat.com> - 2:2.154.0-1
b0856b
- update to
b0856b
  https://github.com/containers/container-selinux/releases/tag/v2.154.0
be23f5
- Related: #1883490
b0856b
b0856b
* Sat Dec 26 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.153.0-1
b0856b
- update to
b0856b
  https://github.com/containers/container-selinux/releases/tag/v2.153.0
be23f5
- Related: #1883490
b0856b
b0856b
* Sat Dec 26 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.152.0-1
b0856b
- update to
b0856b
  https://github.com/containers/container-selinux/releases/tag/v2.152.0
be23f5
- Related: #1883490
b0856b
2010c8
* Tue Nov 03 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.151.0-1
2010c8
- update to https://github.com/containers/container-selinux/releases/tag/v2.151.0
be23f5
- Related: #1883490
2010c8
2010c8
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.150.0-1
2010c8
- update to https://github.com/containers/container-selinux/releases/tag/v2.150.0
be23f5
- Related: #1883490
2010c8
be23f5
* Wed Oct 21 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.145.0-1
be23f5
- synchronize with stream-container-tools-rhel8
be23f5
- Related: #1883490
2010c8
125682
* Thu Aug 13 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.144.0-1
125682
- update to https://github.com/containers/container-selinux/releases/tag/v2.144.0
125682
- Related: #1821193
125682
125682
* Mon Aug 10 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.143.0-1
125682
- update to https://github.com/containers/container-selinux/releases/tag/v2.143.0
125682
- Related: #1821193
125682
125682
* Sun Jul 26 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.142.0-1
125682
- update to https://github.com/containers/container-selinux/releases/tag/v2.142.0
125682
- Related: #1821193
125682
125682
* Sun Jul 19 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.139.0-1
125682
- update to https://github.com/containers/container-selinux/releases/tag/v2.139.0
125682
- Related: #1821193
125682
125682
* Fri Jul 10 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.138.0-1
125682
- update to https://github.com/containers/container-selinux/releases/tag/v2.138.0
125682
- Related: #1821193
125682
f8c892
* Fri Jun 12 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.137.0-1
f8c892
- update to https://github.com/containers/container-selinux/releases/tag/v2.137.0
f8c892
- Related: #1821193
f8c892
f8c892
* Sun May 31 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.135.0-1
f8c892
- update to https://github.com/containers/container-selinux/releases/tag/v2.135.0
f8c892
- Related: #1821193
f8c892
f8c892
* Fri May 29 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.134.0-1
f8c892
- update to https://github.com/containers/container-selinux/releases/tag/v2.134.0
f8c892
- Related: #1821193
f8c892
bffaa6
* Tue May 12 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.132.0-1
bffaa6
- synchronize containter-tools 8.3.0 with 8.2.1
bffaa6
- Related: #1821193
bffaa6
bffaa6
* Tue Apr 07 2020 Jindrich Novy <jnovy@redhat.com> - 2:2.130.0-1
bffaa6
- update to https://github.com/containers/container-selinux/releases/tag/v2.130.0
bffaa6
- don't use macros in changelog
bffaa6
- Related: #1821193
bffaa6
bffaa6
* Wed Dec 11 2019 Jindrich Novy <jnovy@redhat.com> - 2:2.124.0-1
bffaa6
- update to 2.124.0
bffaa6
- Related: RHELPLAN-25139
bffaa6
bffaa6
* Fri Dec 06 2019 Jindrich Novy <jnovy@redhat.com> - 2:2.123.0-2
bffaa6
- implement spec file refactoring by Zdenek Pytela, namely:
bffaa6
  Change the uninstall command in the %%postun section of the specfile
bffaa6
  to use the %%selinux_modules_uninstall macro which uses priority 200.
bffaa6
  Change the install command in the %%post section if the specfile
bffaa6
  to use the %%selinux_modules_install macro.
bffaa6
  Replace relabel commands with using the %%selinux_relabel_pre and
bffaa6
  %%selinux_relabel_post macros.
bffaa6
  Change formatting so that the lines are vertically aligned
bffaa6
  in the %%postun section.
bffaa6
  (https://github.com/containers/container-selinux/pull/85)
bffaa6
- Related: RHELPLAN-25139
bffaa6
bffaa6
* Tue Nov 26 2019 Jindrich Novy <jnovy@redhat.com> - 2:2.123.0-1
bffaa6
- update to 2.123.0
bffaa6
- Related: RHELPLAN-25139
bffaa6
bffaa6
* Mon Nov 25 2019 Jindrich Novy <jnovy@redhat.com> - 2:2.122.0-1
bffaa6
- update to 2.122.0
bffaa6
- Related: RHELPLAN-25139
bffaa6
bffaa6
* Thu Nov 21 2019 Jindrich Novy <jnovy@redhat.com> - 2:2.119.0-3.gita233788
bffaa6
- update to master container-selinux - bug 1769469
bffaa6
- Related: RHELPLAN-25139
bffaa6
bffaa6
* Tue Nov 19 2019 Jindrich Novy <jnovy@redhat.com> - 2:2.119.0-2
bffaa6
- fix post scriptlet - fail if semodule fails - bug 1729272
bffaa6
- Related: RHELPLAN-25139
bffaa6
bffaa6
* Fri Nov 08 2019 Jindrich Novy <jnovy@redhat.com> - 2:2.119.0-1
bffaa6
- update to 2.119.0
bffaa6
- Related: RHELPLAN-25139
bffaa6
bffaa6
* Thu Oct 17 2019 Jindrich Novy <jnovy@redhat.com> - 2:2.116-1
bffaa6
- update to 2.116
bffaa6
  Resolves: #1748519
bffaa6
bffaa6
* Tue Aug 13 2019 Jindrich Novy <jnovy@redhat.com> - 2:2.107-2
bffaa6
- Use at least selinux policy 3.14.3-9.el8,
bffaa6
  Resolves: #1728700
bffaa6
bffaa6
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.107-1
bffaa6
- Resolves: #1720654 - rebase to v2.107
bffaa6
bffaa6
* Mon Mar 11 2019 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.89-1.git2521d0d
bffaa6
- bump to v2.89
bffaa6
bffaa6
* Tue Nov 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.75-1.git99e2cfd
bffaa6
- bump to v2.75
bffaa6
- built commit 99e2cfd
bffaa6
bffaa6
* Mon Oct 22 2018 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.74-1
bffaa6
- Resolves: #1641655 - bump to v2.74
bffaa6
- built commit a62c2db
bffaa6
bffaa6
* Tue Sep 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:2.73-3
bffaa6
- tweak macro for fedora - applies to rhel8 as well
bffaa6
bffaa6
* Mon Sep 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 2:2.73-2
bffaa6
- moved changelog entries:
bffaa6
- Define spc_t as a container_domain, so that container_runtime will transition
bffaa6
to spc_t even when setup with nosuid.
bffaa6
- Allow container_runtimes to setattr on callers fifo_files
bffaa6
- Fix restorecon to not error on missing directory
bffaa6
bffaa6
* Thu Sep 6 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.69-3
bffaa6
- Make sure we pull in the latest selinux-policy
bffaa6
bffaa6
* Wed Jul 25 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.69-2
bffaa6
- Add map support to container-selinux for RHEL 7.5
bffaa6
- Dontudit attempts to write to kernel_sysctl_t
bffaa6
bffaa6
* Mon Jul 16 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.68-1
bffaa6
- Add label for /var/lib/origin
bffaa6
- Add customizable_file_t to customizable_types
bffaa6
bffaa6
* Sun Jul 15 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.67-1
bffaa6
- Add policy for container_logreader_t
bffaa6
bffaa6
* Thu Jun 14 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.66-1
bffaa6
- Allow dnsmasq to dbus chat with spc_t
bffaa6
bffaa6
* Sun Jun 3 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.64-1
bffaa6
- Allow containers to create all socket classes
bffaa6
bffaa6
* Thu May 24 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.62-1
bffaa6
- Label overlay directories under /var/lib/containers/ correctly
bffaa6
bffaa6
* Mon May 21 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.61-1
bffaa6
- Allow spc_t to load kernel modules from inside of container 
bffaa6
bffaa6
* Mon May 21 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.60-1
bffaa6
- Allow containers to list cgroup directories
bffaa6
- Transition for unconfined_service_t to container_runtime_t when executing container_runtime_exec_t.
bffaa6
bffaa6
* Mon May 21 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.58-2
bffaa6
- Run restorecon /usr/bin/podman in postinstall
bffaa6
bffaa6
* Fri May 18 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.58-1
bffaa6
- Add labels to allow podman to be run from a systemd unit file
bffaa6
bffaa6
* Mon May 7 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.57-1
bffaa6
- Set the version of SELinux policy required to the latest to fix build issues.
bffaa6
bffaa6
* Wed Apr 11 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.56-1
bffaa6
- Allow container_runtime_t to transition to spc_t over unlabeled files
bffaa6
bffaa6
* Mon Mar 26 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.55-1
bffaa6
    Allow iptables to read container state
bffaa6
    Dontaudit attempts from containers to write to /proc/self
bffaa6
    Allow spc_t to change attributes on container_runtime_t fifo files
bffaa6
bffaa6
* Thu Mar 8 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.52-1
bffaa6
- Add better support for writing custom selinux policy for customer container domains.
bffaa6
bffaa6
* Thu Mar 8 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.51-1
bffaa6
- Allow shell_exec_t as a container_runtime_t entrypoint
bffaa6
bffaa6
* Wed Mar 7 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.50-1
bffaa6
- Allow bin_t as a container_runtime_t entrypoint
bffaa6
bffaa6
* Fri Mar 2 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.49-1
bffaa6
- Add support for MLS running container runtimes
bffaa6
- Add missing allow rules for running systemd in a container
bffaa6
bffaa6
* Wed Feb 21 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.48-1
bffaa6
- Update policy to match master branch
bffaa6
- Remove typebounds and replace with nnp_transition and nosuid_transition calls
bffaa6
bffaa6
* Tue Jan 9 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.41-1
bffaa6
- Add support to nnp_transition for container domains
bffaa6
- Eliminates need for typebounds.
bffaa6
bffaa6
* Tue Jan 9 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.40-1
bffaa6
- Allow container_runtime_t to use user ttys
bffaa6
- Fixes bounds check for container_t
bffaa6
bffaa6
* Mon Jan 8 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.39-1
bffaa6
- Allow container runtimes to use interited terminals.  This helps
bffaa6
satisfy the bounds check of container_t versus container_runtime_t.
bffaa6
bffaa6
* Sat Jan 6 2018 Dan Walsh <dwalsh@fedoraproject.org> - 2.38-1
bffaa6
- Allow container runtimes to mmap container_file_t devices
bffaa6
- Add labeling for rhel push plugin
bffaa6
bffaa6
* Tue Dec 12 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.37-1
bffaa6
- Allow containers to use inherited ttys
bffaa6
- Allow ostree to handle labels under /var/lib/containers/ostree
bffaa6
bffaa6
* Mon Nov 27 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.36-1
bffaa6
- Allow containers to relabelto/from all file types to container_file_t
bffaa6
bffaa6
* Mon Nov 27 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.35-1
bffaa6
- Allow container to map chr_files labeled container_file_t
bffaa6
bffaa6
* Wed Nov 22 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.34-1
bffaa6
- Dontaudit container processes getattr on kernel file systems
bffaa6
bffaa6
* Sun Nov 19 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.33-1
bffaa6
- Allow containers to read /etc/resolv.conf and /etc/hosts if volume
bffaa6
- mounted into container.
bffaa6
bffaa6
* Wed Nov 8 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.32-1
bffaa6
- Make sure users creating content in /var/lib with right labels
bffaa6
bffaa6
* Thu Oct 26 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.31-1
bffaa6
- Allow the container runtime to dbus chat with dnsmasq
bffaa6
- add dontaudit rules for container trying to write to /proc
bffaa6
bffaa6
* Tue Oct 10 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.29-1
bffaa6
- Add support for lxcd
bffaa6
- Add support for labeling of tmpfs storage created within a container.
bffaa6
bffaa6
* Mon Oct 9 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.28-1
bffaa6
- Allow a container to umount a container_file_t filesystem
bffaa6
bffaa6
* Fri Sep 22 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.27-1
bffaa6
-  Allow container runtimes to work with the netfilter sockets
bffaa6
-  Allow container_file_t to be an entrypoint for VM's
bffaa6
-  Allow spc_t domains to transition to svirt_t
bffaa6
bffaa6
* Fri Sep 22 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.24-1
bffaa6
-     Make sure container_runtime_t has all access of container_t
bffaa6
bffaa6
* Thu Sep 7 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.23-1
bffaa6
- Allow container runtimes to create sockets in tmp dirs
bffaa6
bffaa6
* Tue Sep 5 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.22-1
bffaa6
- Add additonal support for crio labeling.
bffaa6
bffaa6
* Mon Aug 14 2017 Troy Dawson <tdawson@redhat.com> - 2.21-3
bffaa6
- Fixup spec file conditionals
bffaa6
bffaa6
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:2.21-2
bffaa6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
bffaa6
bffaa6
* Thu Jul 6 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.21-1
bffaa6
- Allow containers to execmod on container_share_t files.
bffaa6
bffaa6
* Thu Jul 6 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.20-2
bffaa6
- Relabel runc and crio executables
bffaa6
bffaa6
* Fri Jun 30 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2.20-1
bffaa6
- Allow container processes to getsession
bffaa6
bffaa6
* Wed Jun 14 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.19-2.1
bffaa6
- update release tag to isolate from 7.3
bffaa6
bffaa6
* Wed Jun 14 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.19-1
bffaa6
- Fix mcs transition problem on stdin/stdout/stderr
bffaa6
- Add labels for CRI-O
bffaa6
- Allow containers to use tunnel sockets
bffaa6
bffaa6
* Tue Jun 06 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.15-1.1
bffaa6
- Resolves: #1451289
bffaa6
- rebase to v2.15
bffaa6
- built @origin/RHEL-1.12 commit 583ca40
bffaa6
bffaa6
* Mon Mar 20 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.10-2.1
bffaa6
- Make sure we have a late enough version of policycoreutils
bffaa6
bffaa6
* Mon Mar 6 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.10-1
bffaa6
- Update to the latest container-selinux patch from upstream
bffaa6
- Label files under /usr/libexec/lxc as container_runtime_exec_t
bffaa6
- Give container_t access to XFRM sockets
bffaa6
- Allow spc_t to dbus chat with init system
bffaa6
- Allow containers to read cgroup configuration mounted into a container
bffaa6
bffaa6
* Tue Feb 21 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.9-4
bffaa6
- Resolves: #1425574
bffaa6
- built commit 79a6d70
bffaa6
bffaa6
* Mon Feb 20 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.9-3
bffaa6
- Resolves: #1420591
bffaa6
- built @origin/RHEL-1.12 commit 8f876c4
bffaa6
bffaa6
* Mon Feb 13 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.9-2
bffaa6
- built @origin/RHEL-1.12 commit 33cb78b
bffaa6
bffaa6
* Fri Feb 10 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.8-2
bffaa6
-
bffaa6
bffaa6
* Tue Feb 07 2017 Lokesh Mandvekar <lsm5@redhat.com> - 2:2.7-1
bffaa6
- built origin/RHEL-1.12 commit 21dd37b
bffaa6
bffaa6
* Fri Jan 20 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.4-2
bffaa6
- correct version-release in changelog entries
bffaa6
bffaa6
* Thu Jan 19 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.4-1
bffaa6
- Add typebounds statement for container_t from container_runtime_t
bffaa6
- We should only label runc not runc*
bffaa6
bffaa6
* Tue Jan 17 2017 Dan Walsh <dwalsh@fedoraproject.org> - 2:2.3-1
bffaa6
- Fix labeling on /usr/bin/runc.*
bffaa6
- Add sandbox_net_domain access to container.te
bffaa6
- Remove containers ability to look at /etc content
bffaa6
bffaa6
* Wed Jan 11 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.2-4
bffaa6
- use upstream's RHEL-1.12 branch, commit 56c32da for CentOS 7
bffaa6
bffaa6
* Tue Jan 10 2017 Jonathan Lebon <jlebon@redhat.com> - 2:2.2-3
bffaa6
- properly disable docker module in %%post
bffaa6
bffaa6
* Sat Jan 07 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.2-2
bffaa6
- depend on selinux-policy-targeted
bffaa6
- relabel docker-latest* files as well
bffaa6
bffaa6
* Fri Jan 06 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.2-1
bffaa6
- bump to v2.2
bffaa6
- additional labeling for ocid
bffaa6
bffaa6
* Fri Jan 06 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0-2
bffaa6
- install policy at level 200
bffaa6
- From: Dan Walsh <dwalsh@redhat.com>
bffaa6
bffaa6
* Fri Jan 06 2017 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:2.0-1
bffaa6
- Resolves: #1406517 - bump to v2.0 (first upload to Fedora as a
bffaa6
standalone package)
bffaa6
- include projectatomic/RHEL-1.12 branch commit for building on centos/rhel
bffaa6
bffaa6
* Mon Dec 19 2016 Lokesh Mandvekar <lsm5@fedoraproject.org> - 2:1.12.4-29
bffaa6
- new package (separated from docker)