diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-28 21:22:28 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-28 21:22:28 +0000 |
commit | a2a3f4d6cf8f274b477ec79c1fdcf81379edb47f (patch) | |
tree | 1f5be3eb05fc65f9515e8f9d8cc633fbe0674878 | |
parent | b223a46e8bfee9457a6eb6737ce063cd66056d5c (diff) | |
download | anaconda-a2a3f4d6cf8f274b477ec79c1fdcf81379edb47f.tar.gz anaconda-a2a3f4d6cf8f274b477ec79c1fdcf81379edb47f.tar.xz anaconda-a2a3f4d6cf8f274b477ec79c1fdcf81379edb47f.zip |
you need to do a chroot () here as silo tries to access
/dev/foo before a chroot () with -r
-rw-r--r-- | silo.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -197,6 +197,7 @@ class SiloInstall: # XXX make me "not test mode" if todo.setupFilesystems: - iutil.execWithRedirect(todo.instPath + '/sbin/silo' , + iutil.execWithRedirect('/sbin/silo', args, - stdout = None) + stdout = None, + root = todo.instPath) |