summaryrefslogtreecommitdiffstats
path: root/loader2/method.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-04-17 01:09:08 +0000
committerJeremy Katz <katzj@redhat.com>2005-04-17 01:09:08 +0000
commitf1e4918916112da7568980c95478412064f74c1d (patch)
tree81c9def07d8058a5fc375aefeac6c24e5331706b /loader2/method.c
parent0ad216ce5fc5c7ac423ddd56d8dca0c08e3ef9f6 (diff)
downloadanaconda-f1e4918916112da7568980c95478412064f74c1d.tar.gz
anaconda-f1e4918916112da7568980c95478412064f74c1d.tar.xz
anaconda-f1e4918916112da7568980c95478412064f74c1d.zip
2005-04-16 Jeremy Katz <katzj@redhat.com>
* loader2/kickstart.c: Allow specifying 'mediacheck' in ks.cfg to specify mediacheck. * loader2/kickstart.h: Define constant. * kickstart.py (KickstartBase.readKickstart): Define no-op for 'mediacheck' keyword for stage2 * loader2/method.c (queryIsoMediaCheck): Allow mediacheck for kickstart if 'mediacheck' passed on the command line. (#116429) * loader2/cdinstall.c (queryCDMediaCheck): Likewise.
Diffstat (limited to 'loader2/method.c')
-rw-r--r--loader2/method.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader2/method.c b/loader2/method.c
index 5feee1ed6..a7457c618 100644
--- a/loader2/method.c
+++ b/loader2/method.c
@@ -344,7 +344,7 @@ void queryIsoMediaCheck(char *isoFile, int flags) {
int rc, first;
/* dont bother to test in automated installs */
- if (FL_KICKSTART(flags))
+ if (FL_KICKSTART(flags) && !FL_MEDIACHECK(flags))
return;
/* if they did not specify to mediacheck explicitely then return */