#!/usr/share/ucs-test/runner bash
# shellcheck shell=bash
## desc: check kernel sys/fs values
## tags:
##  - basic
##  - apptest
## exposure: safe

# shellcheck source=../../lib/base.sh
. "$TESTLIBPATH/base.sh" || exit 137

if [ "$(cat /proc/sys/fs/protected_symlinks)" -ne 1 ]; then
	fail_fast 110 "protected_symlinks value not equal to 1"
fi

exit "$RETVAL"
