Version 2.8.
[febootstrap.git] / febootstrap-install.sh
1 #!/bin/bash -
2 # febootstrap-install
3 # (C) Copyright 2009 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 #
19 # Written by Richard W.M. Jones <rjones@redhat.com>
20
21 unset CDPATH
22
23 usage ()
24 {
25     echo "Usage: febootstrap-install ROOT LOCALFILE TARGETPATH MODE OWNER[.GROUP]"
26     echo "Please read febootstrap-install(8) man page for more information."
27 }
28
29 if [ $# != 5 ]; then
30     usage
31     exit 1
32 fi
33
34 set -e
35
36 # This is a carefully chosen sequence of commands which
37 # tries not to disturb any inode numbers apart from the
38 # one for the new file.
39 cp "$2" "$1"/"$3"
40 ino=$(ls -i "$1"/"$3" | awk '{print $1}')
41 cp "$1"/fakeroot.log "$1"/fakeroot.log.old
42 grep -v "ino=$ino," "$1"/fakeroot.log.old > "$1"/fakeroot.log
43 rm "$1"/fakeroot.log.old
44 febootstrap-run "$1" -- chmod "$4" "$3"
45 febootstrap-run "$1" -- chown "$5" "$3"