distroinstaller: Don't attempt distro detection for remote CDROMs

We shouldn't access the local disk in this case
This commit is contained in:
Cole Robinson 2014-09-07 16:16:39 -04:00
parent d8d6af55e5
commit d9ca950acb
1 changed files with 3 additions and 0 deletions

View File

@ -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: