diff options
author | Michael Vogt <mvo@debian.org> | 2011-03-10 11:31:34 +0100 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2011-03-10 11:31:34 +0100 |
commit | 5039a4c529d8c62bfd770fe90347a7805f31724a (patch) | |
tree | f6414e867aa5827cc94313a67546d7a79e902bad /apt-pkg/contrib/fileutl.cc | |
parent | e9ecab0f97be19326c52f2afe04fd9b44eba01ae (diff) | |
parent | c9952021ba65db0581f6053cd6d6e8bf7d563e8f (diff) |
merged the lp:~mvo/apt/mvo branch
Diffstat (limited to 'apt-pkg/contrib/fileutl.cc')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 767951daf..50019872e 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -67,6 +67,15 @@ bool RunScripts(const char *Cnf) // This is the child if (Child == 0) { + if (_config->FindDir("DPkg::Chroot-Directory","/") != "/") + { + std::cerr << "Chrooting into " + << _config->FindDir("DPkg::Chroot-Directory") + << std::endl; + if (chroot(_config->FindDir("DPkg::Chroot-Directory","/").c_str()) != 0) + _exit(100); + } + if (chdir("/tmp/") != 0) _exit(100); |