summaryrefslogtreecommitdiffstats
path: root/instdata.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-07-12 21:58:33 +0000
committerChris Lumens <clumens@redhat.com>2006-07-12 21:58:33 +0000
commite7eb7d0fae612ee6cda4dd7b897e95443e45d9c6 (patch)
treeade652b811b2e703bd100cc4f89c56ad48a4b27f /instdata.py
parent808dd7e591ce42b87da1873edb55a93473a611cf (diff)
downloadanaconda-e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6.tar.gz
anaconda-e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6.tar.xz
anaconda-e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6.zip
Fix "unknown error" on shadow file (#196705).
Diffstat (limited to 'instdata.py')
-rw-r--r--instdata.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/instdata.py b/instdata.py
index e8c167e36..31396ee95 100644
--- a/instdata.py
+++ b/instdata.py
@@ -142,9 +142,9 @@ class InstallData:
try:
if not flags.test:
- iutil.execWithRedirect("/usr/bin/authconfig", args,
+ iutil.execWithRedirect("/usr/sbin/authconfig", args,
stdout = None, stderr = None,
- searchPath = 1, root = anaconda.rootPath)
+ root = anaconda.rootPath)
else:
log.error("Would have run: %s", args)
except RuntimeError, msg: