Commit e50b052a authored by Robert Haas's avatar Robert Haas

Add missing brackets to chkselinuxenv.

parent b056b716
...@@ -127,7 +127,7 @@ if [ "${POLICY_STATUS}" != "on" ]; then ...@@ -127,7 +127,7 @@ if [ "${POLICY_STATUS}" != "on" ]; then
echo "turned on in order to enable the rules necessary to run the" echo "turned on in order to enable the rules necessary to run the"
echo "regression tests." echo "regression tests."
echo "" echo ""
if "${POLICY_STATUS}" = ""; then if [ "${POLICY_STATUS}" = "" ]; then
echo "We attempted to determine the state of this Boolean using" echo "We attempted to determine the state of this Boolean using"
echo "'getsebool', but that command did not produce the expected" echo "'getsebool', but that command did not produce the expected"
echo "output. Please verify that getsebool is available and in" echo "output. Please verify that getsebool is available and in"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment