diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-09 18:37:58 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-09 18:37:58 +0000 |
commit | bd2de79c57673f5168af1be3d559a8522972dfd1 (patch) | |
tree | 1684e00def77e4564d0a0c2492b7cd46097155fb | |
parent | d9e6318dae2650dd500949b96cc7d96a8698194b (diff) | |
download | anaconda-bd2de79c57673f5168af1be3d559a8522972dfd1.tar.gz anaconda-bd2de79c57673f5168af1be3d559a8522972dfd1.tar.xz anaconda-bd2de79c57673f5168af1be3d559a8522972dfd1.zip |
fixed auth config
-rw-r--r-- | todo.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -584,7 +584,7 @@ class ToDo: f.close () def setupAuthentication (self): - args = [ "--kickstart" ] + args = [ "/usr/sbin/authconfig", "--kickstart", "--nostart" ] if self.auth.useShadow: args.append ("--useshadow") if self.auth.useMD5: @@ -596,8 +596,7 @@ class ToDo: if not self.auth.useBroadcast: args.append ("--nisserver") args.append (self.auth.server) - util.execWithRedirect("/usr/sbin/authconfig", - args, + util.execWithRedirect(args[0], args, stdout = None, stderr = None, searchPath = 1, root = self.instPath) |