initial version 1.0.0-3
This commit is contained in:
parent
46f3366c36
commit
a23ed9375c
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
/mysql-selinux.tar.gz
|
62
mysql-selinux.spec
Normal file
62
mysql-selinux.spec
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
# defining macros needed by SELinux
|
||||||
|
%global selinuxtype targeted
|
||||||
|
%global moduletype contrib
|
||||||
|
%global modulename mysql
|
||||||
|
|
||||||
|
Name: mysql-selinux
|
||||||
|
Version: 1.0.0
|
||||||
|
Release: 3%{?dist}
|
||||||
|
License: GPLv3
|
||||||
|
URL: https://github.com/kubco2/mysql-selinux
|
||||||
|
Summary: SELinux policies for product
|
||||||
|
Source0: mysql-selinux.tar.gz
|
||||||
|
BuildArch: noarch
|
||||||
|
BuildRequires: selinux-policy-devel
|
||||||
|
%{?selinux_requires}
|
||||||
|
|
||||||
|
%description
|
||||||
|
SELinux policy modules for product.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{name}
|
||||||
|
|
||||||
|
%pre
|
||||||
|
%selinux_relabel_pre -s %{selinuxtype}
|
||||||
|
|
||||||
|
%build
|
||||||
|
make
|
||||||
|
|
||||||
|
%install
|
||||||
|
# install policy modules
|
||||||
|
install -d %{buildroot}%{_datadir}/selinux/packages
|
||||||
|
install -m 0644 %{modulename}.pp.bz2 %{buildroot}%{_datadir}/selinux/packages
|
||||||
|
|
||||||
|
%check
|
||||||
|
|
||||||
|
%post
|
||||||
|
%selinux_modules_install -s %{selinuxtype} %{_datadir}/selinux/packages/%{modulename}.pp.bz2
|
||||||
|
|
||||||
|
%postun
|
||||||
|
if [ $1 -eq 0 ]; then
|
||||||
|
%selinux_modules_uninstall -s %{selinuxtype} %{modulename}
|
||||||
|
fi
|
||||||
|
|
||||||
|
%posttrans
|
||||||
|
%selinux_relabel_post -s %{selinuxtype}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%defattr(-,root,root,0755)
|
||||||
|
%attr(0644,root,root) %{_datadir}/selinux/packages/%{modulename}.pp.bz2
|
||||||
|
%ghost %{_sharedstatedir}/selinux/%{selinuxtype}/active/modules/200/%{modulename}
|
||||||
|
%license COPYING
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Aug 20 2018 Jakub Janco <jjanco@redhat.com> - 1.0.0-3
|
||||||
|
- reflect latest changes of mysql policy
|
||||||
|
|
||||||
|
* Fri Jul 27 2018 Jakub Janco <jjanco@redhat.com> - 1.0.0-2
|
||||||
|
- reflect latest changes of Independent Product Policy
|
||||||
|
|
||||||
|
* Wed Jul 18 2018 Jakub Janco <jjanco@redhat.com> - 1.0.0-1
|
||||||
|
- First Build
|
||||||
|
|
Loading…
Reference in New Issue
Block a user