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 /instdata.py | |
parent | 808dd7e591ce42b87da1873edb55a93473a611cf (diff) | |
download | anaconda-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.py | 4 |
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: |