diff options
author | Jesse Keating <jkeating@redhat.com> | 2012-06-21 13:12:40 -0700 |
---|---|---|
committer | Jesse Keating <jkeating@redhat.com> | 2012-06-21 13:12:40 -0700 |
commit | c3cf566d9ef05c6ed5c14bda0ec61a406b0c752c (patch) | |
tree | cde47707e2fbe843b57cac827fa05b0c65762137 /utils/handle-sshpw | |
parent | d45d59c682cc58244a7b8dc8294648931c88aff2 (diff) | |
download | anaconda-c3cf566d9ef05c6ed5c14bda0ec61a406b0c752c.tar.gz anaconda-c3cf566d9ef05c6ed5c14bda0ec61a406b0c752c.tar.xz anaconda-c3cf566d9ef05c6ed5c14bda0ec61a406b0c752c.zip |
Use the correct path to kickstart files (#833070)
Diffstat (limited to 'utils/handle-sshpw')
-rwxr-xr-x | utils/handle-sshpw | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/handle-sshpw b/utils/handle-sshpw index a3b3dd091..4b14208fc 100755 --- a/utils/handle-sshpw +++ b/utils/handle-sshpw @@ -28,7 +28,7 @@ from pykickstart.parser import * from pykickstart.version import makeVersion import pyanaconda.users as users -ksfile = '/ks.cfg.done' +ksfile = '/run/install/ks.cfg' # see if we have a file to work with if not os.path.exists(ksfile): |