diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/any.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index fbb31eabd..93407774c 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- skip media screen in auto install + Version 15.1 - 7 December 2012 - add basic support for grub2 (mga#416) diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 0ce8d5533..58afe29a0 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -417,7 +417,7 @@ sub setPackages { } install::pkgs::start_pushing_error(); - media_screen($o); + media_screen($o) if !$::auto_install; # actually read synthesis now we have all the ones we want: require urpm::media; |