Require policycoreutils-devel to pull in audit2allow
This commit is contained in:
parent
7f5337dcb1
commit
db70389507
4
.gitignore
vendored
4
.gitignore
vendored
@ -157,3 +157,7 @@ setroubleshoot-2.2.93.tar.gz
|
|||||||
/setroubleshoot-3.1.12.tar.gz
|
/setroubleshoot-3.1.12.tar.gz
|
||||||
/setroubleshoot-3.1.14.tar.gz
|
/setroubleshoot-3.1.14.tar.gz
|
||||||
/setroubleshoot-3.1.15.tar.gz
|
/setroubleshoot-3.1.15.tar.gz
|
||||||
|
/setroubleshoot-3.1.16.tar.gz
|
||||||
|
/setroubleshoot-3.1.17.tar.gz
|
||||||
|
/setroubleshoot-3.1.18.tar.gz
|
||||||
|
/setroubleshoot-3.1.20.tar.gz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary: Helps troubleshoot SELinux problems
|
Summary: Helps troubleshoot SELinux problems
|
||||||
Name: setroubleshoot
|
Name: setroubleshoot
|
||||||
Version: 3.1.15
|
Version: 3.1.20
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Applications/System
|
Group: Applications/System
|
||||||
@ -34,7 +34,6 @@ Requires: xdg-utils
|
|||||||
%global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")
|
%global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")
|
||||||
|
|
||||||
%global pkgpythondir %{python_sitelib}/%{name}
|
%global pkgpythondir %{python_sitelib}/%{name}
|
||||||
%define pkgdocdir %{_datadir}/doc/%{name}-%{version}
|
|
||||||
%define pkgguidir %{_datadir}/%{name}/gui
|
%define pkgguidir %{_datadir}/%{name}/gui
|
||||||
%define pkgdatadir %{_datadir}/%{name}
|
%define pkgdatadir %{_datadir}/%{name}
|
||||||
%define pkglibexecdir %{_prefix}/libexec/%{name}
|
%define pkglibexecdir %{_prefix}/libexec/%{name}
|
||||||
@ -89,6 +88,7 @@ make DESTDIR=%{buildroot} install
|
|||||||
desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{buildroot}/%{_datadir}/applications/%{name}.desktop
|
desktop-file-install --vendor="" --dir=%{buildroot}%{_datadir}/applications %{buildroot}/%{_datadir}/applications/%{name}.desktop
|
||||||
touch %{buildroot}%{pkgdatabase}
|
touch %{buildroot}%{pkgdatabase}
|
||||||
touch %{buildroot}%{pkgvardatadir}/email_alert_recipients
|
touch %{buildroot}%{pkgvardatadir}/email_alert_recipients
|
||||||
|
rm -rf %{buildroot}/usr/share/doc/
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
%package server
|
%package server
|
||||||
@ -102,7 +102,7 @@ Requires: libxml2-python
|
|||||||
Requires: setools-libs-python >= 3.3.7-19
|
Requires: setools-libs-python >= 3.3.7-19
|
||||||
Requires: rpm-python
|
Requires: rpm-python
|
||||||
Requires: libselinux-python >= 2.1.5-1
|
Requires: libselinux-python >= 2.1.5-1
|
||||||
Requires: policycoreutils-python
|
Requires: policycoreutils-devel
|
||||||
BuildRequires: intltool gettext python
|
BuildRequires: intltool gettext python
|
||||||
BuildRequires: setools-devel >= 3.3.7-19
|
BuildRequires: setools-devel >= 3.3.7-19
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
@ -136,7 +136,6 @@ rm -rf %{buildroot}
|
|||||||
|
|
||||||
%files server -f %{name}.lang
|
%files server -f %{name}.lang
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc %{pkgdocdir}
|
|
||||||
%{_bindir}/sealert
|
%{_bindir}/sealert
|
||||||
%{_sbindir}/sedispatch
|
%{_sbindir}/sedispatch
|
||||||
%{_sbindir}/setroubleshootd
|
%{_sbindir}/setroubleshootd
|
||||||
@ -183,19 +182,29 @@ rm -rf %{buildroot}
|
|||||||
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/org.fedoraproject.SetroubleshootFixit.conf
|
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/org.fedoraproject.SetroubleshootFixit.conf
|
||||||
%{_datadir}/dbus-1/system-services/org.fedoraproject.SetroubleshootFixit.service
|
%{_datadir}/dbus-1/system-services/org.fedoraproject.SetroubleshootFixit.service
|
||||||
|
|
||||||
%package doc
|
|
||||||
Summary: Setroubleshoot documentation
|
|
||||||
Group: System Environment/Base
|
|
||||||
Requires(pre): setroubleshoot-server = %{version}-%{release}
|
|
||||||
|
|
||||||
%description doc
|
|
||||||
Setroubleshoot documentation package
|
|
||||||
|
|
||||||
%files doc
|
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{pkgdocdir}/setroubleshoot*
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Jan 14 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.20-1
|
||||||
|
* Wed Dec 5 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.19-2
|
||||||
|
- Require policycoreutils-devel to pull in audit2allow
|
||||||
|
|
||||||
|
* Wed Dec 5 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.19-1
|
||||||
|
- Update Translations
|
||||||
|
|
||||||
|
* Tue Oct 9 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.18-1
|
||||||
|
- Update Translations
|
||||||
|
- Add keywords to desktop file
|
||||||
|
|
||||||
|
* Tue Oct 9 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.17-2
|
||||||
|
- Update Translations
|
||||||
|
|
||||||
|
* Thu Sep 20 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.17-1
|
||||||
|
- Update Translations
|
||||||
|
|
||||||
|
* Mon Aug 13 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.16-1
|
||||||
|
- Fix sealert to handle avc's in /var/log/messages which will be numbered 1400 and 1107 rather then AVC and USER_AVC
|
||||||
|
- Update Translations
|
||||||
|
- Fix hostname substitution to only effect hostnames
|
||||||
|
|
||||||
* Wed Jul 25 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.15-1
|
* Wed Jul 25 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.15-1
|
||||||
- More translation fixes.
|
- More translation fixes.
|
||||||
|
|
||||||
@ -220,10 +229,10 @@ Setroubleshoot documentation package
|
|||||||
- Add file_types as a param to setroubleshoot.utils
|
- Add file_types as a param to setroubleshoot.utils
|
||||||
- Update translations
|
- Update translations
|
||||||
|
|
||||||
* Tue Mar 8 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.8-1
|
* Thu Mar 8 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.8-1
|
||||||
- Add missing lanquages, using lang supported by gtk
|
- Add missing lanquages, using lang supported by gtk
|
||||||
|
|
||||||
* Tue Mar 8 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.7-1
|
* Thu Mar 8 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.7-1
|
||||||
- Add missing lanquages
|
- Add missing lanquages
|
||||||
|
|
||||||
* Thu Mar 8 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.6-1
|
* Thu Mar 8 2012 Dan Walsh <dwalsh@redhat.com> - 3.1.6-1
|
||||||
@ -262,7 +271,7 @@ Setroubleshoot documentation package
|
|||||||
- Patch from Mgrepl to stop printable from crashing if None is passed in
|
- Patch from Mgrepl to stop printable from crashing if None is passed in
|
||||||
- Update to latest translations
|
- Update to latest translations
|
||||||
|
|
||||||
* Mon Dec 8 2011 <dwalsh@redhat.com> - 3.0.44-1
|
* Thu Dec 8 2011 <dwalsh@redhat.com> - 3.0.44-1
|
||||||
- Update to latest translations
|
- Update to latest translations
|
||||||
- Fix memory leak in sedispatch
|
- Fix memory leak in sedispatch
|
||||||
|
|
||||||
@ -291,7 +300,7 @@ Setroubleshoot documentation package
|
|||||||
- Move serverconnection.py and FixIt commands from setroubleshoot to setroubleshoot-server
|
- Move serverconnection.py and FixIt commands from setroubleshoot to setroubleshoot-server
|
||||||
- Remove run_cmd.py
|
- Remove run_cmd.py
|
||||||
|
|
||||||
* Mon May 24 2011 <dwalsh@redhat.com> - 3.0.35-1
|
* Tue May 24 2011 <dwalsh@redhat.com> - 3.0.35-1
|
||||||
- Make work on RHEL6
|
- Make work on RHEL6
|
||||||
- Fix if Button to allow user to select full button
|
- Fix if Button to allow user to select full button
|
||||||
|
|
||||||
@ -437,7 +446,7 @@ Setroubleshoot documentation package
|
|||||||
- Don't crash on missing inode
|
- Don't crash on missing inode
|
||||||
- Fix up default_encoding an translations
|
- Fix up default_encoding an translations
|
||||||
|
|
||||||
* Thu Jan 13 2010 Dan Walsh <dwalsh@redhat.com> - 2.2.55-2
|
* Wed Jan 13 2010 Dan Walsh <dwalsh@redhat.com> - 2.2.55-2
|
||||||
- Cleanup spec file
|
- Cleanup spec file
|
||||||
- Add default_encoding
|
- Add default_encoding
|
||||||
- Fix wording in bug report window
|
- Fix wording in bug report window
|
||||||
@ -575,13 +584,13 @@ Setroubleshoot documentation package
|
|||||||
* Sun Jul 19 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.15-1
|
* Sun Jul 19 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.15-1
|
||||||
- Fix a1 handling
|
- Fix a1 handling
|
||||||
|
|
||||||
* Mon Jul 15 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.14-1
|
* Mon Jul 13 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.14-1
|
||||||
- Update to upstream
|
- Update to upstream
|
||||||
2009-7-15 Dan Walsh <dwalsh@redhat.com>
|
2009-7-15 Dan Walsh <dwalsh@redhat.com>
|
||||||
- Fix handling of syscall record a1 field
|
- Fix handling of syscall record a1 field
|
||||||
- Translate "/" to mountpoint when returned by kernel
|
- Translate "/" to mountpoint when returned by kernel
|
||||||
|
|
||||||
* Mon Jul 7 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.13-1
|
* Tue Jul 7 2009 Dan Walsh <dwalsh@redhat.com> - 2.2.13-1
|
||||||
- Update to upstream
|
- Update to upstream
|
||||||
2009-7-07 Thomas Liu <tliu@redhat.com>
|
2009-7-07 Thomas Liu <tliu@redhat.com>
|
||||||
- Fixed detail doc not clearing when deleting all alerts
|
- Fixed detail doc not clearing when deleting all alerts
|
||||||
@ -1125,16 +1134,16 @@ Setroubleshoot documentation package
|
|||||||
- fix return args on rpc method
|
- fix return args on rpc method
|
||||||
- add instance id to server
|
- add instance id to server
|
||||||
|
|
||||||
* Wed Dec 9 2006 Dan Walsh <dwalsh@redhat.com> - 1.8.10-1
|
* Wed Dec 13 2006 Dan Walsh <dwalsh@redhat.com> - 1.8.10-1
|
||||||
- Improve quality of plugins
|
- Improve quality of plugins
|
||||||
- Make matching easier
|
- Make matching easier
|
||||||
- Fixes 216575
|
- Fixes 216575
|
||||||
|
|
||||||
* Wed Dec 9 2006 Dan Walsh <dwalsh@redhat.com> - 1.8.9-1
|
* Wed Dec 13 2006 Dan Walsh <dwalsh@redhat.com> - 1.8.9-1
|
||||||
- Additional Translations
|
- Additional Translations
|
||||||
- Fixes 216575
|
- Fixes 216575
|
||||||
|
|
||||||
* Sat Dec 8 2006 Dan Walsh <dwalsh@redhat.com> - 1.8.8-1
|
* Sat Dec 9 2006 Dan Walsh <dwalsh@redhat.com> - 1.8.8-1
|
||||||
- Additional Translations
|
- Additional Translations
|
||||||
- Change sealert to be able to run without X-Windows
|
- Change sealert to be able to run without X-Windows
|
||||||
- Fixes 216575
|
- Fixes 216575
|
||||||
@ -1189,7 +1198,7 @@ Setroubleshoot documentation package
|
|||||||
strike-throughs of alerts marked for deletion.
|
strike-throughs of alerts marked for deletion.
|
||||||
- multiple alerts can now be selected, add select all command,
|
- multiple alerts can now be selected, add select all command,
|
||||||
|
|
||||||
* Tue Nov 23 2006 Dan Walsh <dwalsh@redhat.com> - 1.7.1-1
|
* Thu Nov 23 2006 Dan Walsh <dwalsh@redhat.com> - 1.7.1-1
|
||||||
- New Icon and translations
|
- New Icon and translations
|
||||||
|
|
||||||
* Tue Nov 21 2006 Dan Walsh <dwalsh@redhat.com> - 1.7-1
|
* Tue Nov 21 2006 Dan Walsh <dwalsh@redhat.com> - 1.7-1
|
||||||
@ -1213,7 +1222,7 @@ Setroubleshoot documentation package
|
|||||||
* Wed Nov 8 2006 Dan Walsh <dwalsh@redhat.com> - 1.5-1
|
* Wed Nov 8 2006 Dan Walsh <dwalsh@redhat.com> - 1.5-1
|
||||||
- Speed up startup of service
|
- Speed up startup of service
|
||||||
|
|
||||||
* Tue Nov 6 2006 Dan Walsh <dwalsh@redhat.com> - 1.4-1
|
* Tue Nov 7 2006 Dan Walsh <dwalsh@redhat.com> - 1.4-1
|
||||||
- Many fixes
|
- Many fixes
|
||||||
- Changed the api
|
- Changed the api
|
||||||
|
|
||||||
@ -1287,14 +1296,14 @@ Setroubleshoot documentation package
|
|||||||
during data transfer.
|
during data transfer.
|
||||||
- checkpoint the logfile scanning code, somewhat working
|
- checkpoint the logfile scanning code, somewhat working
|
||||||
|
|
||||||
* Fri Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 0.41-1
|
* Thu Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 0.41-1
|
||||||
- Fix printing
|
- Fix printing
|
||||||
|
|
||||||
* Fri Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 0.40-1
|
* Thu Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 0.40-1
|
||||||
- Fix notification window problems. Now dissappears and does not regenerate if
|
- Fix notification window problems. Now dissappears and does not regenerate if
|
||||||
it has already been seen
|
it has already been seen
|
||||||
|
|
||||||
* Fri Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 0.39-1
|
* Thu Aug 31 2006 Dan Walsh <dwalsh@redhat.com> - 0.39-1
|
||||||
- Add Icon
|
- Add Icon
|
||||||
[John Dennis <jdennis@redhat.com>]
|
[John Dennis <jdennis@redhat.com>]
|
||||||
- dispatcher.py: rework how audit messages injected into the
|
- dispatcher.py: rework how audit messages injected into the
|
||||||
@ -1315,7 +1324,7 @@ it has already been seen
|
|||||||
[Karl MacMillan <kmacmill@redhat.com>]
|
[Karl MacMillan <kmacmill@redhat.com>]
|
||||||
- Separated out HTML rendering and made it easier to translate.
|
- Separated out HTML rendering and made it easier to translate.
|
||||||
|
|
||||||
* Fri Aug 30 2006 Dan Walsh <dwalsh@redhat.com> - 0.38-1
|
* Wed Aug 30 2006 Dan Walsh <dwalsh@redhat.com> - 0.38-1
|
||||||
[Dan Walsh]
|
[Dan Walsh]
|
||||||
- Hook up the rest of the menu bars on browser window
|
- Hook up the rest of the menu bars on browser window
|
||||||
- Add public_content.py plugin
|
- Add public_content.py plugin
|
||||||
@ -1346,7 +1355,7 @@ it has already been seen
|
|||||||
icon now checks if the browser is visible, the status icon is
|
icon now checks if the browser is visible, the status icon is
|
||||||
not presented if the browser is already displayed.
|
not presented if the browser is already displayed.
|
||||||
|
|
||||||
* Thu Aug 22 2006 Dan Walsh <dwalsh@redhat.com> - 0.34-1
|
* Thu Aug 24 2006 Dan Walsh <dwalsh@redhat.com> - 0.34-1
|
||||||
- Standardize on the browser. remove alert window
|
- Standardize on the browser. remove alert window
|
||||||
[John Dennis <jdennis@redhat.com>]
|
[John Dennis <jdennis@redhat.com>]
|
||||||
- remove all vestiges of popup alert, now browser is the only
|
- remove all vestiges of popup alert, now browser is the only
|
||||||
@ -1494,7 +1503,7 @@ it has already been seen
|
|||||||
- Complete all boolean plugins except disable
|
- Complete all boolean plugins except disable
|
||||||
- Change interface to use audit unix domain socket
|
- Change interface to use audit unix domain socket
|
||||||
|
|
||||||
* Mon Jul 28 2006 Dan Walsh <dwalsh@redhat.com> - 0.16-1
|
* Fri Jul 28 2006 Dan Walsh <dwalsh@redhat.com> - 0.16-1
|
||||||
[John Dennis <jdennis@redhat.com>]
|
[John Dennis <jdennis@redhat.com>]
|
||||||
- modify SetFilter in server to return errors instead of
|
- modify SetFilter in server to return errors instead of
|
||||||
throwing an exception. Default the filter list on each alert display.
|
throwing an exception. Default the filter list on each alert display.
|
||||||
@ -1511,7 +1520,7 @@ it has already been seen
|
|||||||
- Make Close button work.
|
- Make Close button work.
|
||||||
- Make setroubleshoot_dispatcher exit if it gets an avc about itself
|
- Make setroubleshoot_dispatcher exit if it gets an avc about itself
|
||||||
|
|
||||||
* Mon Jul 26 2006 Dan Walsh <dwalsh@redhat.com> - 0.15-1
|
* Wed Jul 26 2006 Dan Walsh <dwalsh@redhat.com> - 0.15-1
|
||||||
[Karl MacMillan <kmacmill@redhat.com>]
|
[Karl MacMillan <kmacmill@redhat.com>]
|
||||||
- Add generic templating mechanism to Plugin
|
- Add generic templating mechanism to Plugin
|
||||||
- Ported all plugins to use templating mechanism
|
- Ported all plugins to use templating mechanism
|
||||||
@ -1531,17 +1540,17 @@ it has already been seen
|
|||||||
- Fix startup order for setrobleshoot
|
- Fix startup order for setrobleshoot
|
||||||
- Fix Plugins
|
- Fix Plugins
|
||||||
|
|
||||||
* Tue Jul 20 2006 Dan Walsh <dwalsh@redhat.com> - 0.9-1
|
* Thu Jul 20 2006 Dan Walsh <dwalsh@redhat.com> - 0.9-1
|
||||||
- Additional Plugins plus a lot of cleanup
|
- Additional Plugins plus a lot of cleanup
|
||||||
|
|
||||||
* Mon Jul 19 2006 Dan Walsh <dwalsh@redhat.com> - 0.8-1
|
* Wed Jul 19 2006 Dan Walsh <dwalsh@redhat.com> - 0.8-1
|
||||||
- Added a bunch more plugins
|
- Added a bunch more plugins
|
||||||
[Karl MacMillan <kmacmill@redhat.com>]
|
[Karl MacMillan <kmacmill@redhat.com>]
|
||||||
- Add allow_cvs_read_shadow.py, allow_ftp_use_cifs, allow_ftp_use_nfs, and allow_gssd_read_tmp.
|
- Add allow_cvs_read_shadow.py, allow_ftp_use_cifs, allow_ftp_use_nfs, and allow_gssd_read_tmp.
|
||||||
- Change AVC to have additional helpers for matching messages.
|
- Change AVC to have additional helpers for matching messages.
|
||||||
- Change Plugin to work better with more than one solution.
|
- Change Plugin to work better with more than one solution.
|
||||||
|
|
||||||
* Mon Jul 19 2006 Dan Walsh <dwalsh@redhat.com> - 0.7-1
|
* Wed Jul 19 2006 Dan Walsh <dwalsh@redhat.com> - 0.7-1
|
||||||
- Fix setroubleshoot_dispatcher to catch all information from
|
- Fix setroubleshoot_dispatcher to catch all information from
|
||||||
avc. Much cleaner interface and no longer uses audit2allow cruft.
|
avc. Much cleaner interface and no longer uses audit2allow cruft.
|
||||||
- Remove toolbar from popup window since it did nothing, and I
|
- Remove toolbar from popup window since it did nothing, and I
|
||||||
|
Loading…
Reference in New Issue
Block a user