From e0948419331d56c8f95fdeba2bca12ed5b5f1270 Mon Sep 17 00:00:00 2001 From: Alexey Torkhov Date: Tue, 13 Oct 2009 13:52:43 +0100 Subject: [PATCH] Allow febootstrap-run to be called by root (RHBZ#528687) --- febootstrap-run.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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 \ -- 1.8.3.1