diff options
author | Chris Lumens <clumens@redhat.com> | 2005-08-29 20:49:55 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2005-08-29 20:49:55 +0000 |
commit | 4c7abe447d798b9191fc7446687206fb189e680e (patch) | |
tree | 6187ad4fa17bdb9ad75d1b7af2355e0ac98f6ba6 /installclasses/server.py | |
parent | 19dd52d5196dc1185c9a621e8e68769b78e1dfbe (diff) | |
download | anaconda-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 'installclasses/server.py')
-rw-r--r-- | installclasses/server.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/installclasses/server.py b/installclasses/server.py index 4b724f071..1dc09b10d 100644 --- a/installclasses/server.py +++ b/installclasses/server.py @@ -21,7 +21,6 @@ class InstallClass(BaseInstallClass): def setSteps(self, dispatch): BaseInstallClass.setSteps(self, dispatch); - dispatch.skipStep("authentication") def setGroupSelection(self, grpset, intf): BaseInstallClass.__init__(self, grpset) |