1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Add missing brackets to chkselinuxenv.

This commit is contained in:
Robert Haas
2011-09-23 17:02:09 -04:00
parent b056b716e2
commit e50b052a3b

View File

@ -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"