2006-01-13 13:38:39 +00:00
|
|
|
getfacl --version < /dev/null 2> /dev/null 1>&2 \
|
|
|
|
|
&& setfacl --version < /dev/null 2> /dev/null 1>&2 || {
|
2005-11-17 18:19:12 +00:00
|
|
|
cat <<EOF 1>&2
|
|
|
|
|
**************************************
|
2005-11-24 17:24:36 +00:00
|
|
|
$0: This test requires getfacl and setfacl.
|
2005-11-17 18:19:12 +00:00
|
|
|
**************************************
|
|
|
|
|
EOF
|
|
|
|
|
(exit 77); exit 77
|
2005-12-15 18:58:20 +00:00
|
|
|
}
|
2005-11-17 18:19:12 +00:00
|
|
|
|
2005-12-15 18:58:20 +00:00
|
|
|
id -u bin 2> /dev/null 1>&2 || {
|
2005-11-17 18:19:12 +00:00
|
|
|
cat <<EOF 1>&2
|
|
|
|
|
**************************************
|
2005-11-24 17:24:36 +00:00
|
|
|
$0: This test requires a local user named bin.
|
2005-11-17 18:19:12 +00:00
|
|
|
**************************************
|
|
|
|
|
EOF
|
2005-12-15 19:01:00 +00:00
|
|
|
(exit 77); exit 77
|
2005-12-15 18:58:20 +00:00
|
|
|
}
|