Allow a local-server copy to use -X and -A even if a --protocol-version
[rsync/rsync.git] / testsuite / acls.test
CommitLineData
1c3344a1
WD
1#! /bin/sh
2
3# This program is distributable under the terms of the GNU GPL (see
4# COPYING).
5
6# Test that rsync handles basic ACL preservation.
7
8. $srcdir/testsuite/rsync.fns
9
10$RSYNC --version | grep ", ACLs" >/dev/null || test_skipped "Rsync is configured without ACL support"
11
1c3344a1
WD
12case "$setfacl_nodef" in
13true) test_skipped "I don't know how to use your setfacl command" ;;
14esac
15
16makepath "$fromdir/foo"
17echo something >"$fromdir/file1"
18echo else >"$fromdir/file2"
19
20files='foo file1 file2'
21
22setfacl -m u:0:7 "$fromdir/foo" || test_skipped "Your filesystem has ACLs disabled"
23setfacl -m u:0:5 "$fromdir/file1"
24setfacl -m u:0:5 "$fromdir/file2"
25
26$RSYNC -avvA "$fromdir/" "$todir/"
27
28cd "$fromdir"
29getfacl $files >"$scratchdir/acls.txt"
30
31cd "$todir"
32getfacl $files | diff $diffopt "$scratchdir/acls.txt" -
33
34# The script would have aborted on error, so getting here means we've won.
35exit 0