diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-08-11 22:02:35 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-08-11 22:02:35 +0000 |
commit | 36526e1f7ea663c586b9dea6c5a333ce72af203b (patch) | |
tree | 42665b48e4a0f41b07d4067be9705836cf2655bd | |
parent | b0aadc12f92a39ab94d24949978f501481f1004a (diff) | |
download | anaconda-36526e1f7ea663c586b9dea6c5a333ce72af203b.tar.gz anaconda-36526e1f7ea663c586b9dea6c5a333ce72af203b.tar.xz anaconda-36526e1f7ea663c586b9dea6c5a333ce72af203b.zip |
make sure lilo gets installed if needed
-rw-r--r-- | packages.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages.py b/packages.py index 0e1203987..567ab553d 100644 --- a/packages.py +++ b/packages.py @@ -489,6 +489,9 @@ def doPreInstall(method, id, intf, instPath, dir): if id.auth.useSamba: select(id.hdList, 'pam_smb') + if iutil.getArch() == "i386" and id.bootloader.useGrubVal == 0: + select(id.hdList, 'lilo') + if pcmcia.pcicType(): select(id.hdList, 'kernel-pcmcia-cs') |