From 977f6207719f8c0470eca1404624784d723bdc4a Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Thu, 23 Jan 2003 22:55:14 +0000 Subject: 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) --- dispatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dispatch.py') 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")), -- cgit