summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-09 18:37:58 +0000
committerMatt Wilson <msw@redhat.com>1999-08-09 18:37:58 +0000
commitbd2de79c57673f5168af1be3d559a8522972dfd1 (patch)
tree1684e00def77e4564d0a0c2492b7cd46097155fb
parentd9e6318dae2650dd500949b96cc7d96a8698194b (diff)
downloadanaconda-bd2de79c57673f5168af1be3d559a8522972dfd1.tar.gz
anaconda-bd2de79c57673f5168af1be3d559a8522972dfd1.tar.xz
anaconda-bd2de79c57673f5168af1be3d559a8522972dfd1.zip
fixed auth config
-rw-r--r--todo.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/todo.py b/todo.py
index 88f28e2a5..47510fe3c 100644
--- a/todo.py
+++ b/todo.py
@@ -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)