summaryrefslogtreecommitdiffstats
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
parent808dd7e591ce42b87da1873edb55a93473a611cf (diff)
downloadanaconda-e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6.tar.gz
anaconda-e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6.tar.xz
anaconda-e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6.zip
Fix "unknown error" on shadow file (#196705).
-rw-r--r--ChangeLog3
-rw-r--r--instdata.py4
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4fb407a19..2612a5307 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -42,6 +42,9 @@
* isys/isys.py (inet_calcGateway): Removed.
+ * instdata.py (InstallData.write): Fix "unknown error" on shadow file
+ (#196705).
+
2006-07-11 David Cantrell <dcantrell@redhat.com>
* anaconda.spec: Bump version.
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: