summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-10-06 13:36:22 +0000
committerAlan Conway <aconway@apache.org>2009-10-06 13:36:22 +0000
commit60abeba9f75cd37bc27d62dae271b4372581efc3 (patch)
tree3e9353d8c83a2ff9a817b6f7ec0743fc8c7d54ed
parent938d8d9f17b7ee7a9741349dcae96df500805abe (diff)
downloadqpid-python-60abeba9f75cd37bc27d62dae271b4372581efc3.tar.gz
Fix typo in ais_check, causing cluster tests to fail.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@822268 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-xqpid/cpp/src/tests/ais_check2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/ais_check b/qpid/cpp/src/tests/ais_check
index 1481cf5bab..92eaa9dd39 100755
--- a/qpid/cpp/src/tests/ais_check
+++ b/qpid/cpp/src/tests/ais_check
@@ -28,7 +28,7 @@ ps -u root | grep 'aisexec\|corosync' >/dev/null || {
# Execute command with the ais group set if user is a member.
with_ais_group() {
- if id -nG | grep '\<ais\>' >/dev/null; then sg -c "$*"
+ if id -nG | grep '\<ais\>' >/dev/null; then sg ais -c "$*"
else "$@"
fi
}