[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH f15-branch master] mount needs to be told "nfs" or it assumes any argument is a device (#678414).
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Subject: [PATCH f15-branch master] mount needs to be told "nfs" or it assumes any argument is a device (#678414).
- Date: Mon, 28 Mar 2011 16:55:05 -0400
---
loader/nfsinstall.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/loader/nfsinstall.c b/loader/nfsinstall.c
index d313133..3706311 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;
}
--
1.7.4.1
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]