2015-05-04 22:15:01 +02:00
|
|
|
Reference: bnc#888251
|
|
|
|
A fix for accessing nfs mounted media. A comment in the code states,
|
|
|
|
"Convert RFC compliant NFS nfs://server/path/to/distro
|
|
|
|
to what mount/anaconda expect nfs:server:/path/to/distro
|
|
|
|
and carry the latter form around internally"
|
|
|
|
We need the RFC version to work correctly whereas redhat's anaconda
|
|
|
|
needs their own modified version.
|
2017-08-09 21:02:00 +02:00
|
|
|
Index: virt-manager-1.4.2/virtinst/util.py
|
2014-07-24 21:44:55 +02:00
|
|
|
===================================================================
|
2017-08-09 21:02:00 +02:00
|
|
|
--- virt-manager-1.4.2.orig/virtinst/util.py
|
|
|
|
+++ virt-manager-1.4.2/virtinst/util.py
|
|
|
|
@@ -421,3 +421,22 @@ def getInstallRepos():
|
2017-03-20 21:23:05 +01:00
|
|
|
return (0, [])
|
|
|
|
return lookupZypperRepos(getHostInstallSource())
|
2015-11-26 00:27:12 +01:00
|
|
|
|
2014-07-24 21:44:55 +02:00
|
|
|
+def sanitize_url(url):
|
|
|
|
+ """
|
|
|
|
+ Do nothing for http or ftp, but make sure nfs is in the expected format
|
|
|
|
+ """
|
|
|
|
+ if url.startswith("nfs://"):
|
|
|
|
+ # Convert RFC compliant NFS nfs://server/path/to/distro
|
|
|
|
+ # to what mount/anaconda expect nfs:server:/path/to/distro
|
|
|
|
+ # and carry the latter form around internally
|
|
|
|
+ url = "nfs:" + url[6:]
|
|
|
|
+
|
|
|
|
+ # If we need to add the : after the server
|
|
|
|
+ index = url.find("/", 4)
|
|
|
|
+ if index == -1:
|
|
|
|
+ raise ValueError(_("Invalid NFS format: No path specified."))
|
|
|
|
+ if url[index - 1] != ":":
|
|
|
|
+ url = url[:index] + ":" + url[index:]
|
|
|
|
+
|
|
|
|
+ return url
|
|
|
|
+
|
2017-08-09 21:02:00 +02:00
|
|
|
Index: virt-manager-1.4.2/virtinst/distroinstaller.py
|
2014-07-24 21:44:55 +02:00
|
|
|
===================================================================
|
2017-08-09 21:02:00 +02:00
|
|
|
--- virt-manager-1.4.2.orig/virtinst/distroinstaller.py
|
|
|
|
+++ virt-manager-1.4.2/virtinst/distroinstaller.py
|
2016-06-22 00:34:03 +02:00
|
|
|
@@ -44,6 +44,8 @@ def _sanitize_url(url):
|
2014-07-24 21:44:55 +02:00
|
|
|
"""
|
|
|
|
Do nothing for http or ftp, but make sure nfs is in the expected format
|
|
|
|
"""
|
|
|
|
+ # This sanitize will be done later
|
|
|
|
+ return url
|
|
|
|
if url.startswith("nfs://"):
|
|
|
|
# Convert RFC compliant NFS nfs://server/path/to/distro
|
|
|
|
# to what mount/anaconda expect nfs:server:/path/to/distro
|
2017-08-09 21:02:00 +02:00
|
|
|
Index: virt-manager-1.4.2/virtinst/urlfetcher.py
|
2014-07-24 21:44:55 +02:00
|
|
|
===================================================================
|
2017-08-09 21:02:00 +02:00
|
|
|
--- virt-manager-1.4.2.orig/virtinst/urlfetcher.py
|
|
|
|
+++ virt-manager-1.4.2/virtinst/urlfetcher.py
|
2016-06-22 00:34:03 +02:00
|
|
|
@@ -34,6 +34,7 @@ import urlparse
|
|
|
|
import requests
|
2014-07-24 21:44:55 +02:00
|
|
|
|
2015-05-04 22:15:01 +02:00
|
|
|
from .osdict import OSDB
|
2014-07-24 21:44:55 +02:00
|
|
|
+from virtinst import util
|
|
|
|
|
|
|
|
|
|
|
|
#########################################################################
|
2017-08-22 16:08:14 +02:00
|
|
|
@@ -303,7 +304,8 @@ class _MountedURLFetcher(_LocalURLFetche
|
2014-07-24 21:44:55 +02:00
|
|
|
|
2015-11-26 00:27:12 +01:00
|
|
|
logging.debug("Preparing mount at " + self._srcdir)
|
2014-07-24 21:44:55 +02:00
|
|
|
if self.location.startswith("nfs:"):
|
2015-11-26 00:27:12 +01:00
|
|
|
- cmd = [mountcmd, "-o", "ro", self.location[4:], self._srcdir]
|
2014-07-24 21:44:55 +02:00
|
|
|
+ url = util.sanitize_url(self.location)
|
2015-11-26 00:27:12 +01:00
|
|
|
+ cmd = [mountcmd, "-o", "ro", url[4:], self._srcdir]
|
2014-07-24 21:44:55 +02:00
|
|
|
else:
|
|
|
|
if stat.S_ISBLK(os.stat(self.location)[stat.ST_MODE]):
|
|
|
|
mountopt = "ro"
|