diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-01-23 22:55:14 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-01-23 22:55:14 +0000 |
commit | 977f6207719f8c0470eca1404624784d723bdc4a (patch) | |
tree | 333b4b70e336536f13ecc5602724794560bb492d /dispatch.py | |
parent | 87a10efed6a06b14ecf4bca18afac09ad7800d45 (diff) | |
download | anaconda-977f6207719f8c0470eca1404624784d723bdc4a.tar.gz anaconda-977f6207719f8c0470eca1404624784d723bdc4a.tar.xz anaconda-977f6207719f8c0470eca1404624784d723bdc4a.zip |
only allow ascii passwords. anything else is nonsensical and impossible to
handle sanely due to lack of a defined encoding for the passwd file (#81534)
Diffstat (limited to 'dispatch.py')
-rw-r--r-- | dispatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dispatch.py b/dispatch.py index bfd98c453..b469f97fa 100644 --- a/dispatch.py +++ b/dispatch.py @@ -98,7 +98,7 @@ installSteps = [ ("firewall", ("intf", "id.network", "id.firewall")), ("languagesupport", ("id.langSupport",)), ("timezone", ("id.instLanguage", "id.timezone")), - ("accounts", ("id.rootPassword",)), + ("accounts", ("intf", "id.rootPassword")), ("authentication", ("id.auth",)), ("readcomps", readPackages, ("intf", "method", "id")), ("desktopchoice", ("intf", "id.instClass", "dispatch")), |