From: Daniel Lezcano Date: Fri, 20 Nov 2009 14:01:30 +0000 (+0100) Subject: Do not chdir when daemonize X-Git-Tag: lxc_0_6_4~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=158f998257e4e96683e563e139ffdb358d6eff67;p=thirdparty%2Flxc.git Do not chdir when daemonize With the previous modifications, a temporary directory is created to mount the rootfs in order to have the system container to remount itself the '/' directory. But in case of daemonize, we change the directory, so when the rootfs is specified with a relative path, we can not access it. Don't chdir, as that will be done automatically later in the chroot setup. Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/lxc_start.c b/src/lxc/lxc_start.c index 9e14b8fc7..c2c5fa41a 100644 --- a/src/lxc/lxc_start.c +++ b/src/lxc/lxc_start.c @@ -183,8 +183,6 @@ int main(int argc, char *argv[]) open(my_args.log_file, O_RDONLY | O_CLOEXEC); open(my_args.log_file, O_RDONLY | O_CLOEXEC); } - - chdir("/"); } save_tty(&tios);