summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2011-09-23 17:02:09 -0400
committerRobert Haas <rhaas@postgresql.org>2011-09-23 17:02:09 -0400
commite50b052a3bc5611dbf1a521ac7bc3611695a5f22 (patch)
treee37205ac620966468746394129dac166a37dc0df
parentb056b716e28562f5c53dfb143725294d44f14d38 (diff)
downloadpostgresql-e50b052a3bc5611dbf1a521ac7bc3611695a5f22.tar.gz
Add missing brackets to chkselinuxenv.
-rwxr-xr-xcontrib/sepgsql/chkselinuxenv2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/sepgsql/chkselinuxenv b/contrib/sepgsql/chkselinuxenv
index a9425de88e..a7c81b2fc8 100755
--- a/contrib/sepgsql/chkselinuxenv
+++ b/contrib/sepgsql/chkselinuxenv
@@ -127,7 +127,7 @@ if [ "${POLICY_STATUS}" != "on" ]; then
echo "turned on in order to enable the rules necessary to run the"
echo "regression tests."
echo ""
- if "${POLICY_STATUS}" = ""; then
+ if [ "${POLICY_STATUS}" = "" ]; then
echo "We attempted to determine the state of this Boolean using"
echo "'getsebool', but that command did not produce the expected"
echo "output. Please verify that getsebool is available and in"