From ebff8ee282dd2eee7c2fd9da0587573520b41df0 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 3 Dec 2007 20:05:14 -0600 Subject: Other chroots fall back to "/bin/sh -i", so add the -i. --- toys/chroot.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/toys/chroot.c b/toys/chroot.c index 0126d968..8d2e9aa2 100644 --- a/toys/chroot.c +++ b/toys/chroot.c @@ -1,13 +1,15 @@ /* vi: set sw=4 ts=4: */ /* * chroot.c - Run command in new root directory. + * + * Not in SUSv3. */ #include "toys.h" void chroot_main(void) { - char *binsh[] = {"/bin/sh", 0}; + char *binsh[] = {"/bin/sh", "-i", 0}; if (chdir(*toys.optargs) || chroot(".")) perror_exit("%s", *toys.optargs); xexec(toys.optargs[1] ? toys.optargs+1 : binsh); -- cgit v1.2.3