diff options
author | Matt Wilson <msw@redhat.com> | 1999-05-06 17:45:10 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-05-06 17:45:10 +0000 |
commit | a47ebb82d8e73b4a940baeec26584b53908865b1 (patch) | |
tree | d034a1460e02571a1a702b5bd9774b74f0d14dca | |
parent | 47b28bcd794622b6bf0fe76a95b510653ce0bb2c (diff) | |
download | anaconda-a47ebb82d8e73b4a940baeec26584b53908865b1.tar.gz anaconda-a47ebb82d8e73b4a940baeec26584b53908865b1.tar.xz anaconda-a47ebb82d8e73b4a940baeec26584b53908865b1.zip |
actually run lilo with the correct params (no ' ' after -r
-rw-r--r-- | todo.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ class ToDo: self.installLilo() util.execWithRedirect(self.instPath + '/sbin/lilo' , [ "lilo", - "-r ", self.instPath ], stdout = None) + "-r", self.instPath ], stdout = None) def installLilo(self): if not self.liloDevice: return |