blob: df40899065f2af145670e7d36b7a2f80fa7089e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
test `id -ng` = "ais" || {
cat <<EOF
=========================== NOTICE==============================
You do not appear to have you group ID set to "ais".
Cluster tests that require the openais library will fail.Make sure
you are a member of group ais and run "newgrp ais" before running
the tests.
================================================================
EOF
exit 1;
}
|