mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-24 08:04:58 +02:00
19 lines
487 B
Plaintext
19 lines
487 B
Plaintext
if ! getfacl --version 2> /dev/null 1>&2 || \
|
|
! setfacl --version 2> /dev/null 1>&2 ; then
|
|
cat <<EOF 1>&2
|
|
**************************************
|
|
$0: This test requires getfacl and setfacl.
|
|
**************************************
|
|
EOF
|
|
(exit 77); exit 77
|
|
fi
|
|
|
|
if ! grep '^bin:' /etc/passwd 2> /dev/null 1>&2 ; then
|
|
cat <<EOF 1>&2
|
|
**************************************
|
|
$0: This test requires a local user named bin.
|
|
**************************************
|
|
EOF
|
|
(exit 77); exit 77
|
|
fi
|