diff options
author | Chris Lumens <clumens@redhat.com> | 2011-03-28 16:54:01 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2011-03-29 10:29:35 -0400 |
commit | 43b76051bee0cdbba5c93a602d20a1014c5c147b (patch) | |
tree | 92499939662a3a7122561466f4b6eda1d4adb99b /loader | |
parent | 2872ad124708ee29b462f5fb1767793b561e2f47 (diff) | |
download | anaconda-43b76051bee0cdbba5c93a602d20a1014c5c147b.tar.gz anaconda-43b76051bee0cdbba5c93a602d20a1014c5c147b.tar.xz anaconda-43b76051bee0cdbba5c93a602d20a1014c5c147b.zip |
mount needs to be told "nfs" or it assumes any argument is a device (#678414).
Diffstat (limited to 'loader')
-rw-r--r-- | loader/nfsinstall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/nfsinstall.c b/loader/nfsinstall.c index d31313381..370631189 100644 --- a/loader/nfsinstall.c +++ b/loader/nfsinstall.c @@ -190,7 +190,7 @@ static unsigned int isNfsIso(struct loaderData_s *loaderData) { parseNfsHostPathOpts(loaderData->instRepo, &host, &path, &opts); checked_asprintf(&url, "%s:%s", host, path); - if (doPwMount(url, "/mnt/isodir", "auto", opts, NULL)) { + if (doPwMount(url, "/mnt/isodir", "nfs", opts, NULL)) { logMessage(ERROR, "couldn't mount %s to look for NFSISO", url); goto cleanup1; } |