From 2c8be74033d01f92c840bb382d66a523c63086ce Mon Sep 17 00:00:00 2001 From: Matthew Kent Date: Fri, 25 Sep 2009 20:44:49 +0100 Subject: [PATCH] Allow febootstrap-run to be run as root. --- febootstrap-run.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/febootstrap-run.sh b/febootstrap-run.sh index 60cf021..ce5fbe2 100755 --- a/febootstrap-run.sh +++ b/febootstrap-run.sh @@ -63,6 +63,11 @@ fi target="$1" shift +if [ $(id -u) -eq 0 ]; then + chroot "$target" "$@" + exit 0 +fi + if [ ! -f "$target"/fakeroot.log ]; then echo "febootstrap-run: $target: not a root filesystem" exit 1 -- 1.8.3.1