* Wed Feb 3 2010 Dan Walsh <dwalsh@redhat.com> 2.0.78-19
- Fix seobject and fixfiles
This commit is contained in:
parent
c8f4893a95
commit
e7737e34ea
@ -2780,18 +2780,19 @@ diff --exclude-from=exclude --exclude=sepolgen-1.0.19 --exclude=gui --exclude=po
|
|||||||
+}
|
+}
|
||||||
diff --exclude-from=exclude --exclude=sepolgen-1.0.19 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/fixfiles policycoreutils-2.0.78/scripts/fixfiles
|
diff --exclude-from=exclude --exclude=sepolgen-1.0.19 --exclude=gui --exclude=po -N -u -r nsapolicycoreutils/scripts/fixfiles policycoreutils-2.0.78/scripts/fixfiles
|
||||||
--- nsapolicycoreutils/scripts/fixfiles 2009-12-01 15:46:50.000000000 -0500
|
--- nsapolicycoreutils/scripts/fixfiles 2009-12-01 15:46:50.000000000 -0500
|
||||||
+++ policycoreutils-2.0.78/scripts/fixfiles 2010-01-29 16:40:10.000000000 -0500
|
+++ policycoreutils-2.0.78/scripts/fixfiles 2010-02-03 15:22:51.000000000 -0500
|
||||||
@@ -75,7 +75,8 @@
|
@@ -35,8 +35,8 @@
|
||||||
-e 's|\(.*|*|g' \
|
LOGGER=/usr/sbin/logger
|
||||||
-e 's|\[.*|*|g' \
|
SETFILES=/sbin/setfiles
|
||||||
-e 's|\.\*.*|*|g' \
|
RESTORECON=/sbin/restorecon
|
||||||
- -e 's|\.\+.*|*|g' | \
|
-FILESYSTEMSRW=`mount | grep -v "context=" | egrep -v '\((|.*,)bind(,.*|)\)' | awk '/(ext[234]| ext4dev | gfs2 | xfs | jfs | btrfs ).*\(rw/{print $3}';`
|
||||||
+ -e 's|\.\+.*|*|g' \
|
-FILESYSTEMSRO=`mount | grep -v "context=" | egrep -v '\((|.*,)bind(,.*|)\)' | awk '/(ext[234]| ext4dev | gfs2 | xfs | jfs | btrfs ).*\(ro/{print $3}';`
|
||||||
+ -e 's,/\*$,,g'| \
|
+FILESYSTEMSRW=`grep rw,seclabel /proc/self/mounts | awk '{ print $2 }'`
|
||||||
# These two sorts need to be separate commands \
|
+FILESYSTEMSRO=`grep -v 'rw\|seclabel' /proc/self/mounts | awk '{ print $2 }'`
|
||||||
sort -u | \
|
FILESYSTEMS="$FILESYSTEMSRW $FILESYSTEMSRO"
|
||||||
sort -d | \
|
SELINUXTYPE="targeted"
|
||||||
@@ -87,11 +88,9 @@
|
if [ -e /etc/selinux/config ]; then
|
||||||
|
@@ -87,11 +87,7 @@
|
||||||
esac; \
|
esac; \
|
||||||
fi; \
|
fi; \
|
||||||
done | \
|
done | \
|
||||||
@ -2800,13 +2801,11 @@ diff --exclude-from=exclude --exclude=sepolgen-1.0.19 --exclude=gui --exclude=po
|
|||||||
- \( -wholename /home -o -wholename /root -o -wholename /tmp -wholename /dev \) -prune -o -print0"; \
|
- \( -wholename /home -o -wholename /root -o -wholename /tmp -wholename /dev \) -prune -o -print0"; \
|
||||||
- done 2> /dev/null | \
|
- done 2> /dev/null | \
|
||||||
- ${RESTORECON} $* -0 -f -
|
- ${RESTORECON} $* -0 -f -
|
||||||
+ xargs -r echo
|
+ ${RESTORECON} -f - -R -p -e /home -e /tmp -r /dev; \
|
||||||
+#${RESTORECON} -F -R -p -e /home -e /tmp -e /dev
|
|
||||||
+
|
|
||||||
rm -f ${TEMPFILE} ${PREFCTEMPFILE}
|
rm -f ${TEMPFILE} ${PREFCTEMPFILE}
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@@ -126,13 +125,7 @@
|
@@ -126,13 +122,7 @@
|
||||||
exit $?
|
exit $?
|
||||||
fi
|
fi
|
||||||
if [ ! -z "$FILEPATH" ]; then
|
if [ ! -z "$FILEPATH" ]; then
|
||||||
@ -2821,7 +2820,7 @@ diff --exclude-from=exclude --exclude=sepolgen-1.0.19 --exclude=gui --exclude=po
|
|||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
[ -x /usr/sbin/genhomedircon ] && /usr/sbin/genhomedircon
|
[ -x /usr/sbin/genhomedircon ] && /usr/sbin/genhomedircon
|
||||||
@@ -146,7 +139,7 @@
|
@@ -146,7 +136,7 @@
|
||||||
|
|
||||||
fullrelabel() {
|
fullrelabel() {
|
||||||
logit "Cleaning out /tmp"
|
logit "Cleaning out /tmp"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
Summary: SELinux policy core utilities
|
Summary: SELinux policy core utilities
|
||||||
Name: policycoreutils
|
Name: policycoreutils
|
||||||
Version: 2.0.78
|
Version: 2.0.78
|
||||||
Release: 18%{?dist}
|
Release: 19%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
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
|
||||||
@ -298,7 +298,7 @@ fi
|
|||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Feb 3 2010 Dan Walsh <dwalsh@redhat.com> 2.0.78-18
|
* Wed Feb 3 2010 Dan Walsh <dwalsh@redhat.com> 2.0.78-19
|
||||||
- Fix seobject and fixfiles
|
- Fix seobject and fixfiles
|
||||||
|
|
||||||
* Fri Jan 29 2010 Dan Walsh <dwalsh@redhat.com> 2.0.78-17
|
* Fri Jan 29 2010 Dan Walsh <dwalsh@redhat.com> 2.0.78-17
|
||||||
|
Loading…
Reference in New Issue
Block a user