If we're not root and the "fakeroot" command is available, use it
[rsync.git] / testsuite / chown.test
1 #! /bin/sh
2
3 # Copyright (C) 2002 by Martin Pool <mbp@samba.org>
4
5 # This program is distributable under the terms of the GNU GPL (see
6 # COPYING).
7
8 # Test that when rsync is running as root and has -a it correctly sets
9 # the ownership of the destination.
10
11 # We don't know what users will be present on this system, so we just
12 # use random numeric uids and gids.
13
14 . "$suitedir/rsync.fns"
15
16 set -x
17
18 case `id -u` in
19 '') ;; # If "id" failed, try to continue...
20 0)  ;;
21 *)  if [ -f /usr/bin/fakeroot ]; then
22         exec /usr/bin/fakeroot /bin/sh "$0"
23     fi
24     ;;
25 esac
26
27 # Build some hardlinks
28
29 mkdir "$fromdir"
30 name1="$fromdir/name1"
31 name2="$fromdir/name2"
32 echo "This is the file" > "$name1"
33 echo "This is the other file" > "$name2"
34
35 chown 5000 "$name1" || test_skipped "Can't chown (probably need root)"
36 chown 5001 "$name2" || test_skipped "Can't chown (probably need root)"
37 chgrp 5002 "$name1" || test_skipped "Can't chgrp (probably need root)"
38 chgrp 5003 "$name2" || test_skipped "Can't chgrp (probably need root)"
39
40 checkit "$RSYNC -aHvv \"$fromdir/\" \"$todir/\"" "$fromdir" "$todir"
41
42 # The script would have aborted on error, so getting here means we've won.
43 exit 0