summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-08-29 20:49:55 +0000
committerChris Lumens <clumens@redhat.com>2005-08-29 20:49:55 +0000
commit4c7abe447d798b9191fc7446687206fb189e680e (patch)
tree6187ad4fa17bdb9ad75d1b7af2355e0ac98f6ba6 /packages.py
parent19dd52d5196dc1185c9a621e8e68769b78e1dfbe (diff)
downloadanaconda-4c7abe447d798b9191fc7446687206fb189e680e.tar.gz
anaconda-4c7abe447d798b9191fc7446687206fb189e680e.tar.xz
anaconda-4c7abe447d798b9191fc7446687206fb189e680e.zip
Simplified the authconfig step to store data as a string to be passed to
authconfig in its entirety, rather than handling it as a series of arguments we need to process. We weren't really doing anything with it anyway.
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages.py b/packages.py
index ab357f1ef..63149a27e 100644
--- a/packages.py
+++ b/packages.py
@@ -344,23 +344,23 @@ def handleMiscPackages(intf, id, dir):
select(id.grpset.hdrlist, "kernel-devel")
# if NIS is configured, install ypbind and dependencies:
- if id.auth.useNIS:
+ if id.auth.find("--enablenis") != -1:
select(id.grpset.hdrlist, 'ypbind')
select(id.grpset.hdrlist, 'yp-tools')
select(id.grpset.hdrlist, 'portmap')
- if id.auth.useLdap:
+ if id.auth.find("--enableldap") != -1:
select(id.grpset.hdrlist, 'nss_ldap')
select(id.grpset.hdrlist, 'openldap')
select(id.grpset.hdrlist, 'perl')
- if id.auth.useKrb5:
+ if id.auth.find("--enablekrb5") != -1:
select(id.grpset.hdrlist, 'pam_krb5')
select(id.grpset.hdrlist, 'krb5-workstation')
select(id.grpset.hdrlist, 'krbafs')
select(id.grpset.hdrlist, 'krb5-libs')
- if id.auth.useSamba:
+ if id.auth.find("--enablesmbauth") != -1:
select(id.grpset.hdrlist, 'pam_smb')
if iutil.getArch() == "i386" and id.bootloader.useGrubVal == 1: