view previous-work/more_control_helpers/lib/chown @ 1:d6bef198ae71

add work by Matthias S. Benkmann which is the inspiration for this project.
author Robert McIntyre <rlm@mit.edu>
date Tue, 08 Jan 2013 11:45:01 +0000
parents
children
line wrap: on
line source
1 #!/bin/bash
2 # Copyright (c) 2000,2004 Matthias S. Benkmann <article AT winterdrache DOT de>
3 # You may do everything with this code except misrepresent its origin.
4 # PROVIDED `AS IS' WITH ABSOLUTELY NO WARRANTY OF ANY KIND!
6 DAISY_CHAIN=""
8 for p in $(type -ap chown) ; do
9 if [ ! $p -ef $0 ]; then DAISY_CHAIN=$p ; break ; fi
10 done
12 if [ ! -n "$DAISY_CHAIN" ]; then
13 echo Cannot find real ${0##*/} command
14 exit 1
15 fi
17 if [ $UID == 0 ]; then
18 exec $DAISY_CHAIN "$@"
19 fi
21 # Package users can't chown anything at all, so
22 # having the script test for specific parameters
23 # is pointless.
24 #if [ "$1" == "root.root" ]; then
25 echo 1>&2 '***' chown "$@"
26 #else
27 # $DAISY_CHAIN "$@" || exit $?
28 #fi
30 exit 0