distroinstaller: Don't attempt distro detection for remote CDROMs
We shouldn't access the local disk in this case
This commit is contained in:
parent
d8d6af55e5
commit
d9ca950acb
|
@ -509,6 +509,9 @@ class DistroInstaller(Installer):
|
|||
distro = store.get_osdict_info()
|
||||
finally:
|
||||
fetcher.cleanupLocation()
|
||||
elif self.conn.is_remote():
|
||||
logging.debug("Can't detect distro for media on "
|
||||
"remote connection.")
|
||||
else:
|
||||
distro = osdict.lookup_os_by_media(self.location)
|
||||
except:
|
||||
|
|
Loading…
Reference in New Issue