From: Alexey Torkhov Date: Tue, 13 Oct 2009 12:52:43 +0000 (+0100) Subject: Allow febootstrap-run to be called by root (RHBZ#528687) X-Git-Tag: 2.5~4 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=e0948419331d56c8f95fdeba2bca12ed5b5f1270;p=febootstrap.git Allow febootstrap-run to be called by root (RHBZ#528687) --- diff --git a/febootstrap-run.sh b/febootstrap-run.sh index ce5fbe2..6c5e9b9 100755 --- a/febootstrap-run.sh +++ b/febootstrap-run.sh @@ -68,15 +68,19 @@ if [ $(id -u) -eq 0 ]; then exit 0 fi -if [ ! -f "$target"/fakeroot.log ]; then +if [ $(id -u) -ne 0 -a ! -f "$target"/fakeroot.log ]; then echo "febootstrap-run: $target: not a root filesystem" exit 1 fi if [ "$readonly" = "no" ]; then - fakeroot -i "$target"/fakeroot.log -s "$target"/fakeroot.log \ - fakechroot -s \ + if [ $(id -u) -ne 0 ]; then + fakeroot -i "$target"/fakeroot.log -s "$target"/fakeroot.log \ + fakechroot -s \ + chroot "$target" "$@" + else chroot "$target" "$@" + fi else fakeroot -i "$target"/fakeroot.log \ fakechroot -s \