Users expect kickstart installs to proceed as indicated in the ks file. If the user has selected text, we should just continue rather than stopping to encourage VNC use. --- anaconda | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/anaconda b/anaconda index 969cc07..531041b 100755 --- a/anaconda +++ b/anaconda @@ -756,7 +756,7 @@ if __name__ == "__main__": if not opts.display_mode: opts.display_mode = 'g' - if opts.display_mode == 't' and flags.vncquestion: #we prefer vnc over text mode, so ask about that + if opts.display_mode == 't' and flags.vncquestion and not anaconda.isKickstart: #we prefer vnc over text mode, so ask about that title = _("Would you like to use VNC?") message = _("Text mode provides a limited set of installation options. " "It does not allow you to specify your own partitioning " -- 1.6.2.2 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list