summaryrefslogtreecommitdiffstats
path: root/loader2/urlinstall.c
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-03-20 11:10:10 -0400
committerChris Lumens <clumens@redhat.com>2008-03-20 11:13:32 -0400
commit02bc5431b6fda8b624b7f3d733f31e830abf8a48 (patch)
treeb78edf2297102ef28ab041d948aaf1d98dc90039 /loader2/urlinstall.c
parent6b1af8ce69c48f55d8e6fc609189ab9eb2ba28d0 (diff)
downloadanaconda-02bc5431b6fda8b624b7f3d733f31e830abf8a48.tar.gz
anaconda-02bc5431b6fda8b624b7f3d733f31e830abf8a48.tar.xz
anaconda-02bc5431b6fda8b624b7f3d733f31e830abf8a48.zip
Remove the check for .discinfo on URL installs.
This is no longer needed since we provide the ability to modify your base repo later in the installation.
Diffstat (limited to 'loader2/urlinstall.c')
-rw-r--r--loader2/urlinstall.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/loader2/urlinstall.c b/loader2/urlinstall.c
index 2831a9d89..90d791771 100644
--- a/loader2/urlinstall.c
+++ b/loader2/urlinstall.c
@@ -270,23 +270,6 @@ char * mountUrlImage(struct installMethod * method,
cdurl = findAnacondaCD(location, 0);
if (cdurl) {
- /* verify that our URL is specifying the correct tree */
- /* we do this by attempting to pull a .discinfo file */
- rc = asprintf(&buf, "%s/.discinfo", ui.prefix);
- if (loadSingleUrlImage(&ui, buf, NULL, NULL, NULL, 1)) {
- free(buf);
- umountStage2();
- umount(location);
- unlink("/tmp/cdrom");
-
- stage = URL_STAGE_MAIN;
-
- if (loaderData->method >= 0)
- loaderData->method = -1;
-
- break;
- }
-
logMessage(INFO, "Detected stage 2 image on CD");
winStatus(50, 3, _("Media Detected"),
_("Local installation media detected..."), 0);