diff options
author | jcwillia <jcwillia> | 2006-04-12 14:22:11 +0000 |
---|---|---|
committer | jcwillia <jcwillia> | 2006-04-12 14:22:11 +0000 |
commit | 5fc713dad6a1a87edbcbd22fa9ec3292e2a61ee8 (patch) | |
tree | 3a3f26d8addee362e208649cef0d2f5cca4dd08b | |
parent | 1296d57e07ea87795349c3d1b3c5493942e05c33 (diff) | |
download | mock-5fc713dad6a1a87edbcbd22fa9ec3292e2a61ee8.tar.gz mock-5fc713dad6a1a87edbcbd22fa9ec3292e2a61ee8.tar.xz mock-5fc713dad6a1a87edbcbd22fa9ec3292e2a61ee8.zip |
change to chroot command to insure /proc and /sys are mounted/unmounted
-rw-r--r-- | mock.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -792,7 +792,9 @@ def main(): elif args[0] == 'chroot': config_opts['clean'] = config_opts['quiet'] = False my= Root(config_opts) + my._mount() my.do_chroot(' '.join(args[1:]), True) + my.close() print 'Finished chroot command' else: |