blob: e3ad9c0e8cb5e4b17c84c1de7989078a03298cc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# Test file-has-acl on the file system of /var/tmp, which usually is a local
# file system.
if test -d /var/tmp; then
TMPDIR=/var/tmp
else
TMPDIR=/tmp
fi
export TMPDIR
exec "${srcdir}/test-file-has-acl.sh"
|