From cc0f239c495e3dc8d87b0019f37c4162bcc706dd Mon Sep 17 00:00:00 2001 From: Eric Sandeen Date: Fri, 27 Jan 2012 12:26:26 -0600 Subject: [PATCH] xfstests: mount all filesystem typess with selinux context when needed For some reason, non-xfs filesystems weren't getting mounted with the selinux context; perhaps because none of the xattr tests used to work on anything but xfs? Anyway, 062 fails for extN unless we mount with the fs-wide context. So export SELINUX_MOUNT_OPTIONS for all filesystems. Signed-off-by: Eric Sandeen Reviewed-by: Christoph Hellwig --- common.rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.rc b/common.rc index 6231457c..602513af 100644 --- a/common.rc +++ b/common.rc @@ -72,11 +72,11 @@ _mount_opts() # nfs_t is a "liberal" context so we can use it. if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then SELINUX_MOUNT_OPTIONS="-o context=system_u:object_r:nfs_t:s0" + export SELINUX_MOUNT_OPTIONS fi case $FSTYP in xfs) - export SELINUX_MOUNT_OPTIONS export MOUNT_OPTIONS=$XFS_MOUNT_OPTIONS ;; udf) -- 2.47.3