* Wed May 10 2006 Dan Walsh <dwalsh@redhat.com> 1.30.8-2

- Fix exception on bad file_context
This commit is contained in:
Daniel J Walsh 2006-05-10 18:46:34 +00:00
parent b6613b2a7b
commit 7eb8149607
2 changed files with 2629 additions and 701 deletions

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@
Summary: SELinux policy core utilities. Summary: SELinux policy core utilities.
Name: policycoreutils Name: policycoreutils
Version: 1.30.8 Version: 1.30.8
Release: 1 Release: 2
License: GPL License: GPL
Group: System Environment/Base Group: System Environment/Base
Source: http://www.nsa.gov/selinux/archives/policycoreutils-%{version}.tgz Source: http://www.nsa.gov/selinux/archives/policycoreutils-%{version}.tgz
@ -15,7 +15,7 @@ BuildRequires: pam-devel libsepol-devel >= %{libsepolver} libsemanage-devel >= %
Requires: /bin/mount /bin/egrep /bin/awk /usr/bin/diff Requires: /bin/mount /bin/egrep /bin/awk /usr/bin/diff
Requires: libsepol >= %{libsepolver} libsemanage >= %{libsemanagever} libselinux-python coreutils audit-libs-python >= %{libauditver} Requires: libsepol >= %{libsepolver} libsemanage >= %{libsemanagever} libselinux-python coreutils audit-libs-python >= %{libauditver}
Requires: initscripts Requires: initscripts
BuildRoot: %{_tmppath}/%{name}-buildroot BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description %description
Security-enhanced Linux is a feature of the Linux® kernel and a number Security-enhanced Linux is a feature of the Linux® kernel and a number
@ -42,20 +42,20 @@ context.
make LOG_AUDIT_PRIV=y LIBDIR="%{_libdir}" CFLAGS="%{optflags}" all make LOG_AUDIT_PRIV=y LIBDIR="%{_libdir}" CFLAGS="%{optflags}" all
%install %install
rm -rf ${RPM_BUILD_ROOT} rm -rf %{buildroot}
mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d mkdir -p $RPM_BUILD_ROOT/etc/rc.d/init.d
mkdir -p ${RPM_BUILD_ROOT}%{_bindir} mkdir -p %{buildroot}%{_bindir}
mkdir -p ${RPM_BUILD_ROOT}%{_sbindir} mkdir -p %{buildroot}%{_sbindir}
mkdir -p ${RPM_BUILD_ROOT}/sbin mkdir -p %{buildroot}/sbin
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man1 mkdir -p %{buildroot}%{_mandir}/man1
mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man8 mkdir -p %{buildroot}%{_mandir}/man8
mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/pam.d mkdir -p %{buildroot}%{_sysconfdir}/pam.d
make LOG_AUDIT_PRIV=y DESTDIR="${RPM_BUILD_ROOT}" LIBDIR="${RPM_BUILD_ROOT}%{_libdir}" install make LOG_AUDIT_PRIV=y DESTDIR="%{buildroot}" LIBDIR="%{buildroot}%{_libdir}" install
%find_lang %{name} %find_lang %{name}
%clean %clean
rm -rf ${RPM_BUILD_ROOT} rm -rf %{buildroot}
%files -f %{name}.lang %files -f %{name}.lang
%defattr(-,root,root) %defattr(-,root,root)
@ -110,6 +110,9 @@ rm -rf ${RPM_BUILD_ROOT}
[ -x /sbin/service ] && /sbin/service restorecond condrestart [ -x /sbin/service ] && /sbin/service restorecond condrestart
%changelog %changelog
* Wed May 10 2006 Dan Walsh <dwalsh@redhat.com> 1.30.8-2
- Fix exception on bad file_context
* Mon May 8 2006 Dan Walsh <dwalsh@redhat.com> 1.30.8-1 * Mon May 8 2006 Dan Walsh <dwalsh@redhat.com> 1.30.8-1
- Update to upstream - Update to upstream
* Merged fix warnings patch from Karl MacMillan. * Merged fix warnings patch from Karl MacMillan.