summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-28 21:22:28 +0000
committerMatt Wilson <msw@redhat.com>1999-09-28 21:22:28 +0000
commita2a3f4d6cf8f274b477ec79c1fdcf81379edb47f (patch)
tree1f5be3eb05fc65f9515e8f9d8cc633fbe0674878
parentb223a46e8bfee9457a6eb6737ce063cd66056d5c (diff)
downloadanaconda-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.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/silo.py b/silo.py
index f1c45cb8c..1d35c1260 100644
--- a/silo.py
+++ b/silo.py
@@ -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)