view toys/chroot.c @ 222:cf3b2b8a371b

Release notice.
author Rob Landley <rob@landley.net>
date Wed, 02 Jan 2008 01:40:09 -0600
parents 0efba0e70c43
children d4176f3f3835
line wrap: on
line source

/* 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", "-i", 0};
	if (chdir(*toys.optargs) || chroot("."))
		perror_exit("%s", *toys.optargs);
	xexec(toys.optargs[1] ? toys.optargs+1 : binsh);
}