config: fix selinux context handling
[xfstests-dev.git] / common / config
index 5d87ef5912324e32f6658ac8f4947028aa1bf32f..0dbf0b9c5ecba7b3b108210d73cd3d86ffd2c442 100644 (file)
@@ -217,16 +217,16 @@ case "$HOSTOS" in
         ;;
 esac
 
+# SELinux adds extra xattrs which can mess up our expected output.
+# So, mount with a context, and they won't be created
+# # 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
+
 _mount_opts()
 {
-       # SELinux adds extra xattrs which can mess up our expected output.
-       # So, mount with a context, and they won't be created
-       # # 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 MOUNT_OPTIONS=$XFS_MOUNT_OPTIONS