diff options
author | Mike Fulbright <msf@redhat.com> | 2000-06-05 23:37:03 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2000-06-05 23:37:03 +0000 |
commit | 418dbe17fbdba2a5f49d3ba92873163d29f641d4 (patch) | |
tree | 1f1b59c96b2cb58be1602b0ed737a7a9cbd47998 /installclass.py | |
parent | 3b90ab8ee11c4521cd915b8913dc6e08923671d1 (diff) | |
download | anaconda-418dbe17fbdba2a5f49d3ba92873163d29f641d4.tar.gz anaconda-418dbe17fbdba2a5f49d3ba92873163d29f641d4.tar.xz anaconda-418dbe17fbdba2a5f49d3ba92873163d29f641d4.zip |
ldap and kerberos changes
Diffstat (limited to 'installclass.py')
-rw-r--r-- | installclass.py | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/installclass.py b/installclass.py index f3a6f3dcf..726c4e101 100644 --- a/installclass.py +++ b/installclass.py @@ -112,10 +112,20 @@ class BaseInstallClass: def getHostname(self): return self.hostname - def setAuthentication(self, useShadow, useMd5, useNIS = 0, nisDomain = "", - nisBroadcast = 0, nisServer = ""): - self.auth = ( useShadow, useMd5, useNIS, nisDomain, nisBroadcast, - nisServer) + def setAuthentication(self, useShadow, useMd5, + useNIS = 0, nisDomain = "", nisBroadcast = 0, + nisServer = "", + useLdap = 0, useLdapauth = 0, ldapServer = "", + ldapBasedn = "", + useKrb5 = 0, krb5Realm = "", krb5Kdc = "", + krb5Admin = "", + useHesiod = 0, hesiodlhs = "", hesiodrhs = ""): + + self.auth = ( useShadow, useMd5, + useNIS, nisDomain, nisBroadcast, nisServer, + useLdap, useLdapauth, ldapServer, ldapBasedn, + useKrb5, krb5Realm, krb5Kdc, krb5Admin, + useHesiod, hesiodlhs, hesiodrhs) def getAuthentication(self): return self.auth |