diff options
author | Chris Lumens <clumens@redhat.com> | 2006-07-12 21:58:33 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-07-12 21:58:33 +0000 |
commit | e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6 (patch) | |
tree | ade652b811b2e703bd100cc4f89c56ad48a4b27f | |
parent | 808dd7e591ce42b87da1873edb55a93473a611cf (diff) | |
download | anaconda-e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6.tar.gz anaconda-e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6.tar.xz anaconda-e7eb7d0fae612ee6cda4dd7b897e95443e45d9c6.zip |
Fix "unknown error" on shadow file (#196705).
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | instdata.py | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -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: |